Changeset 5011 for trunk/tools
- Timestamp:
- Mar 1, 2010, 2:02:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/create_listing_file.php
r5010 r5011 208 208 209 209 // Backup input/output format support 210 array_push($pwg_conf['gd_supported_format'], isset($info['JPG Support']) or isset($info['JPEG Support']) ? 'jpeg' : NULL);210 array_push($pwg_conf['gd_supported_format'], (isset($info['JPG Support']) and $info['JPG Support']) or (isset($info['JPEG Support']) and $info['JPEG Support']) ? 'jpeg' : NULL); 211 211 array_push($pwg_conf['gd_supported_format'], $info['PNG Support'] ? 'png' : NULL); 212 212 array_push($pwg_conf['gd_supported_format'], ($info['GIF Read Support'] and $info['GIF Create Support']) ? 'gif' : NULL); … … 1107 1107 $format = ($info['GIF Create Support']) ? '<code>gif</code>' : NULL; 1108 1108 array_push($format_list, $format); 1109 $format = ( isset($info['JPG Support']) or isset($info['JPEG Support'])) ? '<code>jpg</code>' : NULL;1109 $format = ((isset($info['JPG Support']) and $info['JPG Support']) or (isset($info['JPEG Support']) and $info['JPEG Support'])) ? '<code>jpg</code>' : NULL; 1110 1110 array_push($format_list, $format); 1111 1111 $format = ($info['PNG Support']) ? '<code>png</code>' : NULL;
Note: See TracChangeset
for help on using the changeset viewer.