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
\nCOMPLETE!
\n"; echo "\n

You should now visit the General Configuration settings page in the Administration Panel 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!

\n"; ?> - \ No newline at end of file +