Changeset 7886
- Timestamp:
- Nov 26, 2010, 11:26:26 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Autosize/main.inc.php
r7873 r7886 2 2 /* 3 3 Plugin Name: AutoSize 4 Version: 1. 3.84 Version: 1.0.0 5 5 Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation 6 6 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448 … … 8 8 Author URI:http://cljosse.free.fr 9 9 */ 10 /*| Ajoute l' option validation de l'autotaille en fonction du statut */11 10 if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); 12 11 if (!defined('AUTOSIZE_PATH')) 13 12 define( 'AUTOSIZE_PATH', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' ); 14 include_once(AUTOSIZE_PATH.'autosize.inc.php'); 15 global $cl_version,$cl_plugin ; 16 //=================================================================== 13 //================================================================================= 17 14 $path = AUTOSIZE_PATH; 18 15 $plg_data = implode( '', file($path.'main.inc.php') ); 19 20 16 if ( preg_match("|Plugin Name: (.*)|", $plg_data, $val) ) 21 17 { … … 51 47 if (is_numeric($extension)) $plugin['extension'] = $extension; 52 48 } 53 // IMPORTANT SECURITY !49 54 50 $plugin = array_map('htmlspecialchars', $plugin); 51 //================================================================== 52 global $cl_version ; 55 53 $cl_version = $plugin; 56 //============================================================================ 54 include_once(AUTOSIZE_PATH.'autosize.inc.php'); 55 //================================================================== 57 56 $autosize_controler = new autosize_controler(); 58 57 … … 67 66 array(&$autosize_controler, 'cl_autosize_script_3'), EVENT_HANDLER_PRIORITY_NEUTRAL-1, 2 ); 68 67 69 //add_event_handler('loc_end_index',array(&$autosize_controler, 'cl_autosize_script_3'), EVENT_HANDLER_PRIORITY_NEUTRAL );70 71 //---- Categorie --gmapsMarkup.packed.js-72 // if (k[c]) { p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]) } }73 // p = p.replace(new RegExp("\\$", "ig"), "jQuery"); return p }74 68 75 69
Note: See TracChangeset
for help on using the changeset viewer.