diff options
author | natec <natec@users.sourceforge.net> | 2001-03-17 00:46:26 +0000 |
---|---|---|
committer | natec <natec@users.sourceforge.net> | 2001-03-17 00:46:26 +0000 |
commit | 40f1f172a81232e910e09981116e58f45bb6b344 (patch) | |
tree | c1e70a3cb88d1fb8a8675db7ba3cb5b6942a4795 /phpBB/config.php | |
parent | b1ce902c02c90e58dc54e52f90946937f7b569e0 (diff) | |
download | forums-40f1f172a81232e910e09981116e58f45bb6b344.tar forums-40f1f172a81232e910e09981116e58f45bb6b344.tar.gz forums-40f1f172a81232e910e09981116e58f45bb6b344.tar.bz2 forums-40f1f172a81232e910e09981116e58f45bb6b344.tar.xz forums-40f1f172a81232e910e09981116e58f45bb6b344.zip |
New template system. Lots of merging conflicts, so let nate know if he broke stuff.
git-svn-id: file:///svn/phpbb/trunk@105 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index ea871eb736..067141b3da 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -29,16 +29,16 @@ $session_cookie_time = 3600; // DB connection config $dbms = "mysql"; $dbhost = "localhost"; -$dbname = ""; -$dbuser = ""; -$dbpasswd = ""; +$dbname = "phpbb2"; +$dbuser = "phpbb2"; +$dbpasswd = "bbphp2bb"; // Date format (needs to go into DB) $date_format = "M d Y h:i:s a"; // American datesformat //$date_format = "d-m-Y H:i:s"; // European datesformat // DB table prefix -$table_prefix = "phpbb_"; +$table_prefix = ""; $url_images = "images"; $image_quote = "$url_images/quote.gif"; |