Changeset 1210
- Timestamp:
- 11/08/09 09:29:42 (4 years ago)
- Location:
- trunk/plugins
- Files:
-
- 4 modified
-
ExtendedFileManager/config.inc.php (modified) (1 diff)
-
ExtendedFileManager/resizer.php (modified) (1 diff)
-
ImageManager/config.inc.php (modified) (1 diff)
-
ImageManager/resizer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ExtendedFileManager/config.inc.php
r1143 r1210 146 146 */ 147 147 $IMConfig['thumbnail_dir'] = 't'; 148 149 /** 150 * Resize files, or not. If the dimensions for an image are changed 151 * this will control if the image is actually resized. 152 * 153 * Usually you want this true, unless you are very disk space concious. 154 */ 155 156 $IMConfig['resize_files'] = true; 148 157 149 158 /** -
trunk/plugins/ExtendedFileManager/resizer.php
r999 r1210 23 23 { 24 24 js_fail('Missing parameter.'); 25 } 26 27 if($IMConfig['resize_files'] == FALSE) 28 { 29 js_success($_GET['img']); 25 30 } 26 31 -
trunk/plugins/ImageManager/config.inc.php
r1192 r1210 160 160 161 161 $IMConfig['thumbnail_dir'] = '.thumbs'; 162 163 // ------------------------------------------------------------------------- 164 165 /** 166 * Resize files, or not. If the dimensions for an image are changed 167 * this will control if the image is actually resized. 168 * 169 * Usually you want this true, unless you are very disk space concious. 170 */ 171 172 $IMConfig['resize_files'] = true; 162 173 163 174 // ------------------------------------------------------------------------- -
trunk/plugins/ImageManager/resizer.php
r999 r1210 23 23 { 24 24 js_fail('Missing parameter.'); 25 } 26 27 if($IMConfig['resize_files'] == FALSE) 28 { 29 js_success($_GET['img']); 25 30 } 26 31
