Changeset 15912
- Timestamp:
- 04/01/08 13:43:51 (8 months ago)
- Files:
-
- trunk/midcom/org.routamc.positioning/map.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/org.routamc.positioning/map.php
r15863 r15912 338 338 if (isset($marker['abstract'])) 339 339 { 340 $abstract = htmlspecialchars($marker['abstract'],ENT_QUOTES); 340 if ( isset($marker['abstract_allow_html']) 341 && $marker['abstract_allow_html'] = true) 342 { 343 $abstract = $marker['abstract']; 344 } 345 else 346 { 347 $abstract = htmlspecialchars($marker['abstract'],ENT_QUOTES); 348 } 341 349 $script .= "marker_{$i}.setInfoBubble('{$abstract}');\n"; 342 350 }
