From 27d9a538bd39209a0b8a138cdf5ee36af1f70a79 Mon Sep 17 00:00:00 2001 From: Ice Date: Sat, 9 Aug 2008 13:40:47 +0000 Subject: [PATCH] More $phpbb_root_path errors --- root/install_portal/style/layout_install.php | 4 ++-- root/install_portal/style/layout_menu.php | 4 ++-- root/install_portal/style/layout_uninstall.php | 4 ++-- root/install_portal/style/layout_update.php | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/root/install_portal/style/layout_install.php b/root/install_portal/style/layout_install.php index 35e0af54..37572a4f 100644 --- a/root/install_portal/style/layout_install.php +++ b/root/install_portal/style/layout_install.php @@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') ) exit; } -include 'style/layout_header.' . $phpEx; +include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx; if( $confirm == 1 ) { @@ -40,6 +40,6 @@ else \ No newline at end of file diff --git a/root/install_portal/style/layout_menu.php b/root/install_portal/style/layout_menu.php index c8d4bc12..cf4ea880 100644 --- a/root/install_portal/style/layout_menu.php +++ b/root/install_portal/style/layout_menu.php @@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') ) exit; } -include 'style/layout_header.php'; +include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx; @@ -32,6 +32,6 @@ case 'none': \ No newline at end of file diff --git a/root/install_portal/style/layout_uninstall.php b/root/install_portal/style/layout_uninstall.php index ab4189ab..aee36470 100644 --- a/root/install_portal/style/layout_uninstall.php +++ b/root/install_portal/style/layout_uninstall.php @@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') ) exit; } -include 'style/layout_header.' . $phpEx; +include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx; if( $confirm == 1 ) { @@ -40,6 +40,6 @@ else \ No newline at end of file diff --git a/root/install_portal/style/layout_update.php b/root/install_portal/style/layout_update.php index 8e1e8cf8..d11c8705 100644 --- a/root/install_portal/style/layout_update.php +++ b/root/install_portal/style/layout_update.php @@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') ) exit; } -include 'style/layout_header.' . $phpEx; +include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx; if( $updated === TRUE ) { @@ -43,6 +43,6 @@ else \ No newline at end of file