Changeset 1968


Ignore:
Timestamp:
Apr 22, 2007, 12:17:06 AM (17 years ago)
Author:
rub
Message:

In create_listing_file.php file, re-set $confuse_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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/create_listing_file.php

    r1954 r1968  
    4141$conf['prefix_thumbnail'] = 'TN-';
    4242
    43 // $conf['file_ext'] lists all extensions (case insensitive) allowed for your PhpWebGallery installation
    44 $conf['file_ext'] = array('jpg','JPG','jpeg','JPEG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg');
     43// $conf['file_ext'] lists all extensions (case insensitive) allowed
     44// for your PhpWebGallery installation
     45$conf['file_ext'] = array('jpg','JPG','jpeg','JPEG',
     46                          'png','PNG','gif','GIF','mpg','zip',
     47                          'avi','mp3','ogg');
     48
    4549
    4650// $conf['picture_ext'] must be a subset of $conf['file_ext']
    47 $conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG','png','PNG','gif','GIF');
     51$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG',
     52                             'png','PNG','gif','GIF');
    4853
    4954// ****** Time limitation functionality ****** //
     
    5661// ****** EXIF support functionality ****** //
    5762// $conf['use_exif'] set to true if you want to use Exif information
    58 $conf['use_exif'] = false;
     63$conf['use_exif'] = true;
    5964
    6065// use_exif_mapping: same behaviour as use_iptc_mapping
Note: See TracChangeset for help on using the changeset viewer.