aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/faq.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/faq.php')
-rw-r--r--phpBB/faq.php9
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