You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in config.ini: LOCALES=/path/to/lexicons | 3600, TTL=3600 does not work.
in base.php line 2091: if (preg_match('/^(.+)|\h*(\d+)$/',$rval,$tmp)) {
$rval = "/path/to/lexicons | 3600\r", is dirty with "\r".
maybe solution is:
if (preg_match('/^(.+)|\h*(\d+)$/',trim($rval),$tmp)) {
??
The text was updated successfully, but these errors were encountered:
in config.ini: LOCALES=/path/to/lexicons | 3600, TTL=3600 does not work.
in base.php line 2091: if (preg_match('/^(.+)|\h*(\d+)$/',$rval,$tmp)) {
$rval = "/path/to/lexicons | 3600\r", is dirty with "\r".
maybe solution is:
if (preg_match('/^(.+)|\h*(\d+)$/',trim($rval),$tmp)) {
??
The text was updated successfully, but these errors were encountered: