From 2d0221a90ad19fcd55480937036c1ea8e3febdac Mon Sep 17 00:00:00 2001 From: David Molineus Date: Wed, 20 Jun 2018 08:24:22 +0200 Subject: [PATCH 1/3] Fix broken filter factory (Close #57). --- src/Filter/FilterFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Filter/FilterFactory.php b/src/Filter/FilterFactory.php index 62b27f8..5d92b2d 100644 --- a/src/Filter/FilterFactory.php +++ b/src/Filter/FilterFactory.php @@ -51,7 +51,7 @@ final class FilterFactory public function create(string $filter, string $values): Filter { if (isset($this->filters[$filter])) { - return call_user_func([$filter, 'fromRequest'], $values); + return call_user_func([$this->filters[$filter], 'fromRequest'], $values); } throw new \RuntimeException(sprintf('Creating filter failed. Unsupported filter "%s"', $filter)); From f5e87013127be1a1515df4b9a2e57fcce7011ff3 Mon Sep 17 00:00:00 2001 From: David Molineus Date: Wed, 20 Jun 2018 08:25:47 +0200 Subject: [PATCH 2/3] Update readme. --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0a267..998944f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Changelog ========= +3.0.1 (2018-xx-xx) +------------------ + +[Full Changelog](https://github.com/netzmacht/contao-leaflet-maps/compare/3.0.0...3.0.1) + + - Fix broken dynamic bbox related data loading (#57) + 3.0.0 (2018-01-05) ------------------ From 0322a87e94105f354e07f35747f7d1e6288d0870 Mon Sep 17 00:00:00 2001 From: David Molineus Date: Wed, 20 Jun 2018 08:30:14 +0200 Subject: [PATCH 3/3] Fix license. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1bdfbcf..b83b7a2 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "leaflet" ], "type": "contao-bundle", - "license": "LGPL-3.0+", + "license": "LGPL-3.0-or-later", "authors": [ { "name": "David Molineus",