1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 08:47:45 +02:00

page header/footer become functions, forum passwords (I know, I know but it appears a popular feature for some reason ... inclusion not yet set in concrete nor complete), various bug fixes (and no doubt new bugs).

git-svn-id: file:///svn/phpbb/trunk@3969 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-05-03 23:58:45 +00:00
parent 5b927b0162
commit dac0adead3
38 changed files with 585 additions and 520 deletions

View File

@@ -840,7 +840,7 @@ switch ($mode)
));
mcp_header('mcp_move.html');
include($phpbb_root_path . 'includes/page_tail.' . $phpEx);
page_footer();
}
else
{
@@ -1977,7 +1977,7 @@ switch ($mode)
));
}
include($phpbb_root_path . 'includes/page_tail.' . $phpEx);
page_footer();
// -----------------------
// Page specific functions
@@ -1989,14 +1989,13 @@ function mcp_header($template_name, $jumpbox_acl = FALSE, $forum_nav = FALSE)
$forum_id = (!empty($forum_id)) ? $forum_id : FALSE;
$page_title = sprintf($user->lang['MCP'], '', '');
include($phpbb_root_path . 'includes/page_header.' . $phpEx);
page_header(sprintf($user->lang['MCP'], '', ''));
$template->set_filenames(array(
'body' => $template_name
));
'body' => $template_name)
);
if (preg_match('/mod_queue|post_reports|viewlogs/', $mode))
if (preg_match('#mod_queue|post_reports|viewlogs#', $mode))
{
$enable_select_all = TRUE;
}