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
This commit is contained in:
parent
06153552a8
commit
d96768a05e
1 changed files with 9 additions and 4 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue