diff options
author | rub <rub@piwigo.org> | 2007-04-21 22:18:46 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-04-21 22:18:46 +0000 |
commit | d96768a05e46157eb182660b5ca4061d34368d3c (patch) | |
tree | 334df4a4942b48b020062b7240f0fca931333835 /tools | |
parent | 06153552a8f9e4ff85b4ff0ab8ff0d882812c62c (diff) |
In create_listing_file.php file, re-set $conf['use_exif'] value with same value defined in config_default.inc.php file.
With 1.7, action are done in order to standardize between this 2 files.
Reduce line length (<79)
Merge BSF 1967:1968 into branch-1_7
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@1969 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'tools')
-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 223f6f3b8..2a6bf3779 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( |