1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-04 22:58:10 +02:00

Changed the text of some errormsgs

git-svn-id: file:///svn/phpbb/trunk@2140 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt 2002-02-14 10:26:14 +00:00
parent d32477e898
commit 8fdc55da52

View File

@ -260,28 +260,28 @@ $sql = "INSERT INTO " . CONFIG_TABLE . "
(config_name, config_value) VALUES ('server_name', 'www.myserver.tld')"; (config_name, config_value) VALUES ('server_name', 'www.myserver.tld')";
if( !$db->sql_query($sql) ) 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 . " $sql = "INSERT INTO " . CONFIG_TABLE . "
(config_name, config_value) VALUES ('script_path', '/phpBB2/')"; (config_name, config_value) VALUES ('script_path', '/phpBB2/')";
if( !$db->sql_query($sql) ) 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 . " $sql = "INSERT INTO " . CONFIG_TABLE . "
(config_name, config_value) VALUES ('server_port', '80')"; (config_name, config_value) VALUES ('server_port', '80')";
if( !$db->sql_query($sql) ) 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 ) $sql = "INSERT INTO " . CONFIG_TABLE . " (config_name, config_value )
VALUES ('version', 'RC-3')"; VALUES ('version', 'RC-3')";
if ( !$db->sql_query($sql) ) if ( !$db->sql_query($sql) )
{ {
die("Couldn't insert new config var"); die("Couldn't insert config key 'version'");
} }
$sql = "INSERT INTO " . CONFIG_TABLE . " $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"; 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> </body>
</html> </html>