Change map id generation.

This commit is contained in:
David Molineus
2015-01-09 23:53:56 +01:00
parent 1ebd3ef49b
commit c0a9a6c681
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ class MapElement extends \ContentElement
protected function compile()
{
try {
$mapId = 'ce_map_' . ($this->cssID[0] ?: $this->id);
$mapId = 'map_' . ($this->cssID[0] ?: ('ce_' . $this->id));
$map = $this->mapService->getJavascript($this->leaflet_map, null, $mapId);
$GLOBALS['TL_BODY'][] = '<script>' . $map .'</script>';

View File

@@ -74,7 +74,7 @@ class MapModule extends \Module
protected function compile()
{
try {
$mapId = 'mod_map_' . ($this->cssID[0] ?: $this->id);
$mapId = 'map_' . ($this->cssID[0] ?: ('mod_' . $this->id));
$map = $this->mapService->getJavascript($this->leaflet_map, null, $mapId);
$GLOBALS['TL_BODY'][] = '<script>' . $map .'</script>';