diff options
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 64fda22ac8..3731b073cc 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1508,6 +1508,10 @@ function parse_cfg_file($filename, $lines = false) { $value = true; } + else if (!trim($value)) + { + $value = ''; + } else if (($value{0} == "'" && $value{sizeof($value)-1} == "'") || ($value{0} == '"' && $value{sizeof($value)-1} == '"')) { $value = substr($value, 1, sizeof($value)-2); |