aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2003-01-30 20:02:09 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2003-01-30 20:02:09 +0000
commita0d0d1da780f7aa4770f5811affa2a7706d544ad (patch)
tree840a51fb63423ad7ed39a78f4ce08c311d5948d7 /phpBB/includes/functions.php
parent83e97693a4473e6cefb15bd9127a7ac2dfa2423b (diff)
downloadforums-a0d0d1da780f7aa4770f5811affa2a7706d544ad.tar
forums-a0d0d1da780f7aa4770f5811affa2a7706d544ad.tar.gz
forums-a0d0d1da780f7aa4770f5811affa2a7706d544ad.tar.bz2
forums-a0d0d1da780f7aa4770f5811affa2a7706d544ad.tar.xz
forums-a0d0d1da780f7aa4770f5811affa2a7706d544ad.zip
Changes for UCP and registration, pretty minor overall. Fixed emailer to use
trigger_error insted of message_die. emailer still needs some clean-up git-svn-id: file:///svn/phpbb/trunk@3430 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index d760bf83d0..724ede0da5 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -36,7 +36,7 @@ function set_config($config_name, $config_value, $is_dynamic = FALSE)
WHERE config_name = "' . $config_name . '"');
$sql = 'INSERT INTO ' . CONFIG_TABLE . " (config_name, config_value)
- VALUES ('$config_name', '" . $db->sql_escape($config_value) . "'";
+ VALUES ('$config_name', '" . $db->sql_escape($config_value) . "')";
$db->sql_query($sql);
}