aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-19 00:25:56 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-19 00:25:56 +0000
commit5e80be9bf6de9d44185a35d721b4431cfbfefd9a (patch)
treef9dd6eb8eca089efae9e5088a80de7f88b807c35 /phpBB
parente74e62dc7ca974977e34da397ac2a6c1d47e837f (diff)
downloadforums-5e80be9bf6de9d44185a35d721b4431cfbfefd9a.tar
forums-5e80be9bf6de9d44185a35d721b4431cfbfefd9a.tar.gz
forums-5e80be9bf6de9d44185a35d721b4431cfbfefd9a.tar.bz2
forums-5e80be9bf6de9d44185a35d721b4431cfbfefd9a.tar.xz
forums-5e80be9bf6de9d44185a35d721b4431cfbfefd9a.zip
Minor change so that a page header and footer are output to right pane
git-svn-id: file:///svn/phpbb/trunk@697 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/admin/index.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php
index 8293c47271..466e803895 100644
--- a/phpBB/admin/index.php
+++ b/phpBB/admin/index.php
@@ -99,7 +99,10 @@ elseif( $HTTP_GET_VARS['pane'] == 'left' )
elseif( $HTTP_GET_VARS['pane'] == 'right' )
{
- echo "This a right pane ;)";
+ $template_header = "admin/page_header.tpl";
+ include('page_header_admin.'.$phpEx);
+
+ include('page_footer_admin.'.$phpEx);
}
else