diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/config.inc.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/config.inc.php b/include/config.inc.php index 4edfc5bf5..c60c46ca5 100644 --- a/include/config.inc.php +++ b/include/config.inc.php @@ -66,7 +66,7 @@ $conf['slideshow_period'] = 4; // last_days : options for X last days to displays for comments $conf['last_days'] = array(1,2,3,10,30,365); -// file_ext : file extensions (case insensitive) authorized +// file_ext : file extensions (case sensitive) authorized $conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg'); @@ -102,6 +102,17 @@ $conf['show_iptc_mapping'] = array( 'iptc_caption' => '2#120' ); +// use_iptc_mapping : in which IPTC fields will PhpWebGallery find image +// information ? This setting is used during metadata synchronisation. It +// associates a phpwebgallery_images column name to a IPTC key +$conf['use_iptc_mapping'] = array( + 'keywords' => '2#025', + 'date_creation' => '2#055', + 'author' => '2#122', + 'name' => '2#005', + 'comment' => '2#120' + ); + // show_exif_fields : in EXIF fields, you can choose to display fields in // sub-arrays, for example ['COMPUTED']['ApertureFNumber']. for this, add // 'COMPUTED;ApertureFNumber' in $conf['show_exif_fields'] |