diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-08-11 21:45:50 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-08-11 21:45:50 +0000 |
commit | 57c17e44eca4dfbd7ea2367e7b53101c9b0d0976 (patch) | |
tree | 33e0269a5204803d2ea717adf7ccd0cb0b85a5e3 /phpBB/style.php | |
parent | 27d86a2e3254d1bba611c449d767baa61939737e (diff) | |
download | forums-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/style.php')
-rw-r--r-- | phpBB/style.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/style.php b/phpBB/style.php index 288b7fbb75..4d3db9b8b1 100644 --- a/phpBB/style.php +++ b/phpBB/style.php @@ -49,7 +49,7 @@ if (!empty($_GET['id']) && !empty($_GET['sid'])) require($phpbb_root_path . 'includes/db/' . $dbms . '.'.$phpEx); $db = new sql_db(); - $cache = new acm($db); + $cache = new acm(); // Connect to DB if (!@$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false)) |