aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2002-03-20 14:26:26 +0000
committerthe_systech <the_systech@users.sourceforge.net>2002-03-20 14:26:26 +0000
commit8483e9195e5f04feac1aad97439f06f472429a73 (patch)
tree4b6dd1063d0ceb2f1bb770d13f8dd88d7141e15f
parent40c7072be7e69c113ff32ab8d30fcd69efe12fac (diff)
downloadforums-8483e9195e5f04feac1aad97439f06f472429a73.tar
forums-8483e9195e5f04feac1aad97439f06f472429a73.tar.gz
forums-8483e9195e5f04feac1aad97439f06f472429a73.tar.bz2
forums-8483e9195e5f04feac1aad97439f06f472429a73.tar.xz
forums-8483e9195e5f04feac1aad97439f06f472429a73.zip
Fix for bug # 532327 (This is what happens when I rush something in :D)
git-svn-id: file:///svn/phpbb/trunk@2371 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install.php b/phpBB/install.php
index 8988462beb..eed86d8ae5 100644
--- a/phpBB/install.php
+++ b/phpBB/install.php
@@ -817,8 +817,8 @@ else
$error .= "Could not update Board info :: " . $sql . " :: " . __LINE__ . " :: " . __FILE__ . "<br /><br />";
}
$sql = "UPDATE " . $table_prefix . "config
- SET config_value = '" . $server_path . "'
- WHERE config_name = 'server_path'";
+ SET config_value = '" . $script_path . "'
+ WHERE config_name = 'script_path'";
$result = $db->sql_query($sql);
if( !$result )
{