diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-17 10:54:45 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-17 10:54:45 +0000 |
commit | 18b4bf0d05c49cd6b211fc177f568fc2329e2089 (patch) | |
tree | d5396a92b9d8166303738f52e112bd77ac59c12f /phpBB/common.php | |
parent | c345279596d3a54f6379c1a148b5e42bcba204cd (diff) | |
download | forums-18b4bf0d05c49cd6b211fc177f568fc2329e2089.tar forums-18b4bf0d05c49cd6b211fc177f568fc2329e2089.tar.gz forums-18b4bf0d05c49cd6b211fc177f568fc2329e2089.tar.bz2 forums-18b4bf0d05c49cd6b211fc177f568fc2329e2089.tar.xz forums-18b4bf0d05c49cd6b211fc177f568fc2329e2089.zip |
Moved db include
git-svn-id: file:///svn/phpbb/trunk@3657 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 89a3fb053f..2641ccbc86 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -57,7 +57,7 @@ if (!empty($load_extensions)) // Include files require($phpbb_root_path . 'includes/acm/cache_' . $acm_type . '.'.$phpEx); -require($phpbb_root_path . 'db/' . $dbms . '.'.$phpEx); +require($phpbb_root_path . 'includes/db/' . $dbms . '.'.$phpEx); require($phpbb_root_path . 'includes/template.'.$phpEx); require($phpbb_root_path . 'includes/session.'.$phpEx); require($phpbb_root_path . 'includes/functions.'.$phpEx); |