mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-11-30 20:13:49 +01:00
Correct a misspelled variable name
This commit is contained in:
@@ -216,10 +216,10 @@ class MapProvider
|
||||
|
||||
if ($this->cache->hasItem($cacheKey)) {
|
||||
$cached = $this->cache->getItem($cacheKey);
|
||||
$achedData = $cached->get();
|
||||
$this->assets->fromArray($achedData['assets']);
|
||||
$cachedData = $cached->get();
|
||||
$this->assets->fromArray($cachedData['assets']);
|
||||
|
||||
return $achedData['javascript'];
|
||||
return $cachedData['javascript'];
|
||||
} else {
|
||||
$cached = $this->cache->getItem($cacheKey);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user