From 58615845adcb69346ef8628928a989f31efbb54b Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 23 Feb 2014 19:01:41 +0100 Subject: [PATCH] allow basic commenting of locale string --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index b62b41da..5b5f5bdd 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -100,7 +100,7 @@ function loadConfig() { $configstr .= file_get_contents($board['dir'] . '/config.php'); } $matches = array(); - preg_match_all('/\$config\s*\[\s*[\'"]locale[\'"]\s*\]\s*=\s*([\'"])(.*?)\1/', $configstr, $matches); + preg_match_all('/[^\/*#]\$config\s*\[\s*[\'"]locale[\'"]\s*\]\s*=\s*([\'"])(.*?)\1/', $configstr, $matches); if ($matches && isset ($matches[2]) && $matches[2]) { $matches = $matches[2]; $config['locale'] = $matches[count($matches)-1];