More $phpbb_root_path errors

This commit is contained in:
Ice
2008-08-09 13:40:47 +00:00
parent 55f2568b0c
commit 27d9a538bd
4 changed files with 8 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') )
exit; exit;
} }
include 'style/layout_header.' . $phpEx; include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx;
if( $confirm == 1 ) if( $confirm == 1 )
{ {
@@ -40,6 +40,6 @@ else
<?php <?php
} }
include 'style/layout_footer.' . $phpEx; include $phpbb_root_path.'install_portal/style/layout_footer.' . $phpEx;
?> ?>

View File

@@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') )
exit; exit;
} }
include 'style/layout_header.php'; include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx;
@@ -32,6 +32,6 @@ case 'none':
<?php <?php
break; break;
} }
include 'style/layout_footer.php'; include $phpbb_root_path.'style/layout_footer.' . $phpEx;
?> ?>

View File

@@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') )
exit; exit;
} }
include 'style/layout_header.' . $phpEx; include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx;
if( $confirm == 1 ) if( $confirm == 1 )
{ {
@@ -40,6 +40,6 @@ else
<?php <?php
} }
include 'style/layout_footer.' . $phpEx; include $phpbb_root_path.'install_portal/style/layout_footer.' . $phpEx;
?> ?>

View File

@@ -5,7 +5,7 @@ if( !defined('IN_PHPBB') || !defined('IN_PORTAL_INSTALL') )
exit; exit;
} }
include 'style/layout_header.' . $phpEx; include $phpbb_root_path.'install_portal/style/layout_header.' . $phpEx;
if( $updated === TRUE ) if( $updated === TRUE )
{ {
@@ -43,6 +43,6 @@ else
<?php <?php
} }
include 'style/layout_footer.' . $phpEx; include $phpbb_root_path.'install_portal/style/layout_footer.' . $phpEx;
?> ?>