mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-11-28 11:04:08 +01:00
Merge tag '3.0.1'
This commit is contained in:
@@ -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)
|
||||
------------------
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"leaflet"
|
||||
],
|
||||
"type": "contao-bundle",
|
||||
"license": "LGPL-3.0+",
|
||||
"license": "LGPL-3.0-or-later",
|
||||
"authors": [
|
||||
{
|
||||
"name": "David Molineus",
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user