From 93e1133ee88b03e7cae7318cb19761e698e57b86 Mon Sep 17 00:00:00 2001 From: neoraider Date: Sun, 10 Dec 2006 18:00:04 +0000 Subject: SQL-Daten tabellenweise aufgeteilt; config-Daten jetzt mit urlencode kodiert. --- core/config.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') 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]); ?> -- cgit v1.2.3