diff options
author | plegall <plg@piwigo.org> | 2015-04-21 12:07:14 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2015-04-21 12:07:14 +0000 |
commit | b3541bf16bc5efe665c0d64ddc5e18766d4ee2a6 (patch) | |
tree | c2b695ad6a9b9f059fa797a480b546c98ac0cd8b /include/config_default.inc.php | |
parent | 796ac2f531600fdafa648ffd178056be3874c5dc (diff) |
feature 2955: make the keywords separator configurable
git-svn-id: http://piwigo.org/svn/trunk@31097 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r-- | include/config_default.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 32cbe9916..c141beba8 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -371,6 +371,10 @@ $conf['use_exif_mapping'] = array( // javascript) $conf['allow_html_in_metadata'] = false; +// decide which characters can be used as keyword separators (works in EXIF +// and IPTC). Coma "," cannot be removed from this list. +$conf['metadata_keyword_separator_regex'] = '/[.,;]/'; + // +-----------------------------------------------------------------------+ // | sessions | // +-----------------------------------------------------------------------+ |