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) ------------------ 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", 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));