1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10: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

@@ -188,7 +188,7 @@ switch ($action)
unset($existing_imgs);
unset($imglist);
page_header($user->lang[$lang]);
adm_page_header($user->lang[$lang]);
?>
@@ -274,7 +274,7 @@ function update_image_dimensions()
</table></form>
<?php
page_footer();
adm_page_footer();
break;
case 'create':
@@ -495,7 +495,7 @@ function update_image_dimensions()
}
}
page_header($user->lang[$lang]);
adm_page_header($user->lang[$lang]);
?>
<h1><?php echo $user->lang[$lang] ?></h1>
@@ -540,14 +540,14 @@ function update_image_dimensions()
?>
</table></form>
<?php
page_footer();
adm_page_footer();
}
break;
case 'export':
page_header($user->lang['EXPORT_' . $lang]);
adm_page_header($user->lang['EXPORT_' . $lang]);
trigger_error(sprintf($user->lang['EXPORT_' . $lang . '_EXPLAIN'], '<a href="admin_icons.' . $phpEx . $SID . '&amp;mode=' . $mode . '&amp;action=send">', '</a>'));
break;
@@ -625,7 +625,7 @@ function update_image_dimensions()
$db->sql_freeresult($result);
// Output the page
page_header($user->lang[$lang]);
adm_page_header($user->lang[$lang]);
?>
@@ -716,7 +716,7 @@ function update_image_dimensions()
<?php
page_footer();
adm_page_footer();
break;
}