4 Commits
3.0.0 ... 3.0.1

Author SHA1 Message Date
David Molineus
0322a87e94 Fix license. 2018-06-20 08:30:14 +02:00
David Molineus
f5e8701312 Update readme. 2018-06-20 08:25:47 +02:00
David Molineus
2d0221a90a Fix broken filter factory (Close #57). 2018-06-20 08:24:22 +02:00
David Molineus
9f0b34a53b Merge tag '3.0.0' 2018-01-05 17:11:39 +01:00
3 changed files with 9 additions and 2 deletions

View File

@@ -2,6 +2,13 @@
Changelog 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) 3.0.0 (2018-01-05)
------------------ ------------------

View File

@@ -7,7 +7,7 @@
"leaflet" "leaflet"
], ],
"type": "contao-bundle", "type": "contao-bundle",
"license": "LGPL-3.0+", "license": "LGPL-3.0-or-later",
"authors": [ "authors": [
{ {
"name": "David Molineus", "name": "David Molineus",

View File

@@ -51,7 +51,7 @@ final class FilterFactory
public function create(string $filter, string $values): Filter public function create(string $filter, string $values): Filter
{ {
if (isset($this->filters[$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)); throw new \RuntimeException(sprintf('Creating filter failed. Unsupported filter "%s"', $filter));