1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +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

@@ -269,7 +269,7 @@ if (isset($_POST['start']) || isset($_GET['batchstart']))
else
{
set_config('board_disable', 0);
page_header($user->lang['SEARCH_INDEX']);
adm_page_header($user->lang['SEARCH_INDEX']);
?>
@@ -279,7 +279,7 @@ if (isset($_POST['start']) || isset($_GET['batchstart']))
<?php
page_footer();
adm_page_footer();
}
@@ -289,7 +289,7 @@ if (isset($_POST['start']) || isset($_GET['batchstart']))
else if (isset($_POST['cancel']))
{
set_config('board_disable', 0);
page_header($user->lang['SEARCH_INDEX']);
adm_page_header($user->lang['SEARCH_INDEX']);
?>
@@ -299,12 +299,12 @@ else if (isset($_POST['cancel']))
<?php
page_footer();
adm_page_footer();
}
else
{
page_header($user->lang['Search_index']);
adm_page_header($user->lang['Search_index']);
?>
@@ -320,7 +320,7 @@ else
<?php
page_footer();
adm_page_footer();
}