aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/memberlist.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-13 16:14:37 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-13 16:14:37 +0000
commitea983410993371bcc63e1a120fe17bed964f5f08 (patch)
tree5bb1cc1bd365b04ba40aba256c9a4b82982a691e /phpBB/memberlist.php
parent79d57c449fc190ce693d2ecfdbb0dc36e8e82be7 (diff)
downloadforums-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/memberlist.php')
-rw-r--r--phpBB/memberlist.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php
index da82f03916..fe6e41cae7 100644
--- a/phpBB/memberlist.php
+++ b/phpBB/memberlist.php
@@ -18,8 +18,10 @@
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
***************************************************************************/
-include('extension.inc');
-include('common.'.$phpEx);
+
+$phpbb_root_path = "./";
+include($phpbb_root_path . 'extension.inc');
+include($phpbb_root_path . 'common.'.$phpEx);
$pagetype = "memberlist";
$page_title = $lang['Memberlist'];
@@ -33,7 +35,7 @@ init_userprefs($userdata);
// End session management
//
-include('includes/page_header.'.$phpEx);
+include($phpbb_root_path . 'includes/page_header.'.$phpEx);
if(!isset($HTTP_GET_VARS['start']))
{
@@ -293,6 +295,6 @@ if(($selected_members = $db->sql_numrows($result)) > 0)
$template->pparse("body");
}
-include('includes/page_tail.'.$phpEx);
+include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?> \ No newline at end of file