diff options
Diffstat (limited to '')
-rw-r--r-- | tools/create_listing_file.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/tools/create_listing_file.php b/tools/create_listing_file.php index 05c789ff6..e13bbe5de 100644 --- a/tools/create_listing_file.php +++ b/tools/create_listing_file.php @@ -40,11 +40,16 @@ $conf['gallery'] = 'http://'; // prefix for thumbnails in "thumbnail" sub directories $conf['prefix_thumbnail'] = 'TN-'; -// $conf['file_ext'] lists all extensions (case insensitive) allowed for your PhpWebGallery installation -$conf['file_ext'] = array('jpg','JPG','jpeg','JPEG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg'); +// $conf['file_ext'] lists all extensions (case insensitive) allowed +// for your PhpWebGallery installation +$conf['file_ext'] = array('jpg','JPG','jpeg','JPEG', + 'png','PNG','gif','GIF','mpg','zip', + 'avi','mp3','ogg'); + // $conf['picture_ext'] must be a subset of $conf['file_ext'] -$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG','png','PNG','gif','GIF'); +$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG', + 'png','PNG','gif','GIF'); // ****** Time limitation functionality ****** // // max execution time before refresh in seconds @@ -55,7 +60,7 @@ $conf['refresh_delay'] = 0; // ****** EXIF support functionality ****** // // $conf['use_exif'] set to true if you want to use Exif information -$conf['use_exif'] = false; +$conf['use_exif'] = true; // use_exif_mapping: same behaviour as use_iptc_mapping $conf['use_exif_mapping'] = array( |