diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-13 16:14:37 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-13 16:14:37 +0000 |
commit | ea983410993371bcc63e1a120fe17bed964f5f08 (patch) | |
tree | 5bb1cc1bd365b04ba40aba256c9a4b82982a691e /phpBB/faq.php | |
parent | 79d57c449fc190ce693d2ecfdbb0dc36e8e82be7 (diff) | |
download | forums-ea983410993371bcc63e1a120fe17bed964f5f08.tar forums-ea983410993371bcc63e1a120fe17bed964f5f08.tar.gz forums-ea983410993371bcc63e1a120fe17bed964f5f08.tar.bz2 forums-ea983410993371bcc63e1a120fe17bed964f5f08.tar.xz forums-ea983410993371bcc63e1a120fe17bed964f5f08.zip |
Changes to include location + some other misc stuff
git-svn-id: file:///svn/phpbb/trunk@646 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/faq.php')
-rw-r--r-- | phpBB/faq.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/phpBB/faq.php b/phpBB/faq.php index 0217095d6f..26dfa5e070 100644 --- a/phpBB/faq.php +++ b/phpBB/faq.php @@ -22,8 +22,9 @@ * ***************************************************************************/ -include('extension.inc'); -include('common.'.$phpEx); +$phpbb_root_path = "./"; +include($phpbb_root_path . 'extension.inc'); +include($phpbb_root_path . 'common.'.$phpEx); // // Start session management @@ -34,8 +35,8 @@ init_userprefs($userdata); // End session management // -include('includes/page_header.'.$phpEx); +include($phpbb_root_path . 'includes/page_header.'.$phpEx); -include('includes/page_tail.'.$phpEx); +include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?>
\ No newline at end of file |