aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/update_to_RC3.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/update_to_RC3.php b/phpBB/update_to_RC3.php
index e66dca5c72..f22ba8cdd7 100644
--- a/phpBB/update_to_RC3.php
+++ b/phpBB/update_to_RC3.php
@@ -260,28 +260,28 @@ $sql = "INSERT INTO " . CONFIG_TABLE . "
(config_name, config_value) VALUES ('server_name', 'www.myserver.tld')";
if( !$db->sql_query($sql) )
{
- die("Couldn't insert config key 'record_online_date'");
+ die("Couldn't insert config key 'server_name'");
}
$sql = "INSERT INTO " . CONFIG_TABLE . "
(config_name, config_value) VALUES ('script_path', '/phpBB2/')";
if( !$db->sql_query($sql) )
{
- die("Couldn't insert config key 'record_online_date'");
+ die("Couldn't insert config key 'script_path'");
}
$sql = "INSERT INTO " . CONFIG_TABLE . "
(config_name, config_value) VALUES ('server_port', '80')";
if( !$db->sql_query($sql) )
{
- die("Couldn't insert config key 'record_online_date'");
+ die("Couldn't insert config key 'server_port'");
}
$sql = "INSERT INTO " . CONFIG_TABLE . " (config_name, config_value )
VALUES ('version', 'RC-3')";
if ( !$db->sql_query($sql) )
{
- die("Couldn't insert new config var");
+ die("Couldn't insert config key 'version'");
}
$sql = "INSERT INTO " . CONFIG_TABLE . "
@@ -302,4 +302,4 @@ echo "\n<br />\n<b>COMPLETE!</b><br />\n";
echo "\n<p>You should now visit the General Configuration settings page in the <a href=\"admin/\">Administration Panel</a> and update the 'Server' settings. If you do not do this emails sent from the board will contain incorrect information. Don't forget to delete this file!</p>\n";
?>
</body>
-</html> \ No newline at end of file
+</html>