Changeset 8013 for extensions/rv_gmaps/trunk
- Timestamp:
- Dec 6, 2010, 9:54:09 PM (14 years ago)
- Location:
- extensions/rv_gmaps/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/rv_gmaps/trunk/include/picture_map.inc.php
r6639 r8013 3 3 4 4 $template->concat('PLUGIN_PICTURE_ACTIONS', ' 5 <a href="'.duplicate_picture_url().'" title="'.l10n('return to normal view mode').'"><img src="'.get_ root_url().'plugins/'.$rvm_dir.'/icons/map_m.png" class="button" alt="map"></a>5 <a href="'.duplicate_picture_url().'" title="'.l10n('return to normal view mode').'"><img src="'.get_absolute_root_url(false).'plugins/'.$rvm_dir.'/icons/map_m.png" class="button" alt="map"></a> 6 6 '); 7 7 -
extensions/rv_gmaps/trunk/main.inc.php
r7033 r8013 77 77 $link_title = sprintf( l10n('displays %s on a map'), strip_tags($page['title']) ); 78 78 $template->concat( 'PLUGIN_INDEX_ACTIONS' ,' 79 <li><a href="'.$map_url.'" title="'.$link_title.'" rel="nofollow"><img src="'.get_ root_url().'plugins/'.$rvm_dir.'/icons/map_m.png" class="button" alt="map"></a></li>79 <li><a href="'.$map_url.'" title="'.$link_title.'" rel="nofollow"><img src="'.get_absolute_root_url(false).'plugins/'.$rvm_dir.'/icons/map_m.png" class="button" alt="map"></a></li> 80 80 '); 81 81 } … … 86 86 $link_title = sprintf( l10n('opens %s in Google Earth'), strip_tags($page['title']) ); 87 87 $template->concat( 'PLUGIN_INDEX_ACTIONS' ,' 88 <li><a href="'.$kml_url.'" title="'.$link_title.'" rel="nofollow" type="application/vnd.google-earth.kml+xml"><img src="'.get_ root_url().'plugins/'.$rvm_dir.'/icons/earth_m.png" class="button" alt="earth"></a></li>88 <li><a href="'.$kml_url.'" title="'.$link_title.'" rel="nofollow" type="application/vnd.google-earth.kml+xml"><img src="'.get_absolute_root_url(false).'plugins/'.$rvm_dir.'/icons/earth_m.png" class="button" alt="earth"></a></li> 89 89 '); 90 90 } … … 109 109 $link_title = sprintf( l10n('displays %s on a map'), strip_tags($pictures['current']['name']) ); 110 110 $template->concat('PLUGIN_PICTURE_ACTIONS', ' 111 <a href="'.$map_url.'" title="'.$link_title.'" rel="nofollow" target="_top"><img src="'.get_ root_url().'plugins/'.$rvm_dir.'/icons/map_m.png" class="button" alt="map"></a>111 <a href="'.$map_url.'" title="'.$link_title.'" rel="nofollow" target="_top"><img src="'.get_absolute_root_url(false).'plugins/'.$rvm_dir.'/icons/map_m.png" class="button" alt="map"></a> 112 112 '); 113 113 }
Note: See TracChangeset
for help on using the changeset viewer.