From 79612d540e2ab4ac4deaac741d7132e0f41b95c9 Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Sun, 25 Feb 2001 01:23:32 +0000 Subject: Aded GENERAL_ERROR to constants git-svn-id: file:///svn/phpbb/trunk@57 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/config.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'phpBB/config.php') diff --git a/phpBB/config.php b/phpBB/config.php index e5f6eb26fb..59bf08ca93 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -61,6 +61,7 @@ define(BANNED, 2); define(QUERY_ERROR, 3); define(SESSION_CREATE, 4); define(NO_TOPICS, 5); +define(GENERAL_ERROR, 6); // Session data $session_cookie = "phpBBsession"; @@ -69,9 +70,9 @@ $session_cookie_time = 3600; // DB connection config $dbms = "mysql"; $dbhost = "localhost"; -$dbname = "phpbb"; -$dbuser = "iamstillanidiot"; -$dbpasswd = "iamstillanidiotspassword"; +$dbname = ""; +$dbuser = ""; +$dbpasswd = ""; // Date format (needs to go into DB) $date_format = "M d, Y h:i:s a"; -- cgit v1.2.1