aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-08-11 21:45:50 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-08-11 21:45:50 +0000
commit57c17e44eca4dfbd7ea2367e7b53101c9b0d0976 (patch)
tree33e0269a5204803d2ea717adf7ccd0cb0b85a5e3 /phpBB/common.php
parent27d86a2e3254d1bba611c449d767baa61939737e (diff)
downloadforums-57c17e44eca4dfbd7ea2367e7b53101c9b0d0976.tar
forums-57c17e44eca4dfbd7ea2367e7b53101c9b0d0976.tar.gz
forums-57c17e44eca4dfbd7ea2367e7b53101c9b0d0976.tar.bz2
forums-57c17e44eca4dfbd7ea2367e7b53101c9b0d0976.tar.xz
forums-57c17e44eca4dfbd7ea2367e7b53101c9b0d0976.zip
Taken out the $db var from acm classes for consistency with other classes
git-svn-id: file:///svn/phpbb/trunk@4379 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index bd0b843673..7d4323cb38 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -190,8 +190,8 @@ set_error_handler('msg_handler');
$user = new user();
$auth = new auth();
$template = new template();
+$cache = new acm();
$db = new sql_db();
-$cache = new acm($db);
// Connect to DB
$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false);