summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-10 19:00:04 +0100
committerneoraider <devnull@localhost>2006-12-10 19:00:04 +0100
commit93e1133ee88b03e7cae7318cb19761e698e57b86 (patch)
tree825b0ca10c5b32f3ad03430ec8b427f99d3dc855 /core
parent7be63518bdb86fb747dda20918ef6eab3d30e40c (diff)
downloadneon-93e1133ee88b03e7cae7318cb19761e698e57b86.tar
neon-93e1133ee88b03e7cae7318cb19761e698e57b86.zip
SQL-Daten tabellenweise aufgeteilt;
config-Daten jetzt mit urlencode kodiert.
Diffstat (limited to 'core')
-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]);
?>