diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2002-02-14 10:26:14 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2002-02-14 10:26:14 +0000 |
commit | 8fdc55da5276f66fddbe9c23c1c55a1d0be474de (patch) | |
tree | 559db4a60c8847b65812d059ceb46922aacd24b1 /phpBB | |
parent | d32477e898121deb065581f2a11340706b88dbce (diff) | |
download | forums-8fdc55da5276f66fddbe9c23c1c55a1d0be474de.tar forums-8fdc55da5276f66fddbe9c23c1c55a1d0be474de.tar.gz forums-8fdc55da5276f66fddbe9c23c1c55a1d0be474de.tar.bz2 forums-8fdc55da5276f66fddbe9c23c1c55a1d0be474de.tar.xz forums-8fdc55da5276f66fddbe9c23c1c55a1d0be474de.zip |
Changed the text of some errormsgs
git-svn-id: file:///svn/phpbb/trunk@2140 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/update_to_RC3.php | 10 |
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> |