Changeset 22116 for extensions
- Timestamp:
- Apr 10, 2013, 10:55:02 AM (12 years ago)
- Location:
- extensions/Autosize
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Autosize/autosize.inc.php
r19986 r22116 123 123 global $conf, $template, $page; 124 124 if(!isset($conf['AS_panorama'])) return $content; 125 $asp = & $conf['AS_panorama']; 125 if( !is_array($conf['AS_panorama']) ){ 126 return $content; 127 } 128 $asp = & $conf['AS_panorama']; 129 if(!isset($asp['in_mode_360'])) $asp['in_mode_360']=""; 130 if(!isset($asp['in_mode_180'])) $asp['in_mode_180']=""; 131 126 132 if ( !stristr($image['name'], $asp['in_mode_360']) and !stristr($image['name'], $asp['in_mode_180']) ) return $content; 127 133 -
extensions/Autosize/js/autosize.dimensions.js
r18716 r22116 564 564 565 565 function num(el, prop) { 566 valeur_num = jQuery.curCSS(el.jquery ? el[0] : el, prop, true); 566 567 valeur_num = jQuery.css(el.jquery ? el[0] : el, prop, true); 567 568 568 569 return Parse_Int(valeur_num); -
extensions/Autosize/main.inc.php
r19986 r22116 2 2 /* 3 3 Plugin Name: AutoSize 4 Version: 3.0. 84 Version: 3.0.9 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 -
extensions/Autosize/maintain.inc.php
r19156 r22116 98 98 if (!isset($conf['cl_derivatives_sav'])){ 99 99 $req = mysql_query('SELECT count(distinct(`param`)) FROM '.CONFIG_TABLE.' WHERE `param` LIKE "'.'cl_derivatives_sav'.'" '); 100 $op=mysql _fetch_row($req);100 $op=mysqli_fetch_row($req); 101 101 if(count($op)==0){ 102 102 $q = 'INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
Note: See TracChangeset
for help on using the changeset viewer.