summaryrefslogtreecommitdiffstats
path: root/core/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/config.inc.php')
-rw-r--r--core/config.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/config.inc.php b/core/config.inc.php
index 5318341..982e8eb 100644
--- a/core/config.inc.php
+++ b/core/config.inc.php
@@ -7,5 +7,5 @@
$res = $GLOBALS['db']->Execute('SELECT name, value FROM config WHERE module = 0');
while($row = $res->FetchRow())
- $GLOBALS['config'][$row[0]] = $row[1];
+ $GLOBALS['config'][$row[0]] = urldecode($row[1]);
?>