🌍
English
Hello/Hi/Greetings,
I need a little help. I want to sychronise some folders that contain an apastrophe
I tried the following in the config file ([^A-Za-z ''-]) but that doesnt seem to work.
like: testing's halo's whatevers's
is there any fix for this?
Piwigo version: 2.9.2
PHP version: 7.1
MySQL version: 5.6
Piwigo URL: [hidden]
Last edited by Defeatenonce (2017-11-20 18:54:11)
Offline
You must escape your single quote or put double quotes around the regular expression :
$conf['sync_chars_regex'] = '/^[a-zA-Z0-9-_.\' ]+$/'; // or "/^[a-zA-Z0-9-_.' ]+$/"
Offline