1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

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
This commit is contained in:
Ludovic Arnaud
2003-08-11 21:45:50 +00:00
parent 27d86a2e32
commit 57c17e44ec
5 changed files with 21 additions and 21 deletions

View File

@@ -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);