Changeset 50135 in spip-zone
- Timestamp:
- Jul 31, 2011, 6:32:36 PM (10 years ago)
- Location:
- _plugins_/open_layers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/open_layers/inc/openlayer_public_script_init.php
r49194 r50135 14 14 15 15 function inc_openlayer_public_script_init_dist(){ 16 $out = '<script type=" application/javascript" src="'.generer_url_public('openlayer.js').'"></script>';16 $out = '<script type="text/javascript" src="'.generer_url_public('openlayer.js').'"></script>'; 17 17 return $out; 18 18 } -
_plugins_/open_layers/inc/openlayer_script_init.php
r49194 r50135 15 15 static $deja_insere = false; 16 16 if ($deja_insere) return ""; 17 $out = '<script type=" application/javascript" src="'.generer_url_public('openlayer.js').'"></script>';17 $out = '<script type="text/javascript" src="'.generer_url_public('openlayer.js').'"></script>'; 18 18 return $out; 19 19 } -
_plugins_/open_layers/openlayer_pipeline.php
r49194 r50135 11 11 12 12 function openlayer_insert_head_prive($flux){ 13 $flux .= '<script type=" application/javascript" src="'.generer_url_public('openlayer.js').'"></script>';13 $flux .= '<script type="text/javascript" src="'.generer_url_public('openlayer.js').'"></script>'; 14 14 return $flux; 15 15 } 16 16 17 17 function openlayer_insert_head($flux){ 18 $flux .= '<script type=" application/javascript" src="'.generer_url_public('openlayer.js').'"></script>';18 $flux .= '<script type="text/javascript" src="'.generer_url_public('openlayer.js').'"></script>'; 19 19 return $flux; 20 20 }
Note: See TracChangeset
for help on using the changeset viewer.