diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-02 19:19:54 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-02 19:19:54 +0000 |
commit | 66295f4bdae6eb6c0dd2f6d165d0faf3f9d7f10d (patch) | |
tree | 250b6a9ea25fbde65ea95fde24b9301b7b19ccdc /phpBB | |
parent | dd74309709e2f72b4c100557f26e9fb9001a4f98 (diff) | |
download | forums-66295f4bdae6eb6c0dd2f6d165d0faf3f9d7f10d.tar forums-66295f4bdae6eb6c0dd2f6d165d0faf3f9d7f10d.tar.gz forums-66295f4bdae6eb6c0dd2f6d165d0faf3f9d7f10d.tar.bz2 forums-66295f4bdae6eb6c0dd2f6d165d0faf3f9d7f10d.tar.xz forums-66295f4bdae6eb6c0dd2f6d165d0faf3f9d7f10d.zip |
Couple of X/HTML 4.01 Transitional validation errors
git-svn-id: file:///svn/phpbb/trunk@2814 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/admin/index.php | 33 | ||||
-rw-r--r-- | phpBB/admin/page_header_admin.php | 2 |
2 files changed, 18 insertions, 17 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index 7d99bb5f3d..5779949f33 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -330,6 +330,19 @@ elseif ( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) ?> +<script language="Javascript" type="text/javascript"> + // + // Should really check the browser to stop this whining ... + // + function marklist(status) + { + for (i = 0; i < document.inactive.length; i++) + { + document.inactive.elements[i].checked = status; + } + } +</script> + <h1><?php echo $lang['Welcome_phpBB']; ?></h1> <p><?php echo $lang['Admin_intro']; ?></p> @@ -373,6 +386,9 @@ elseif ( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) <td class="row1" nowrap="nowrap"><?php echo $lang['Gzip_compression']; ?>:</td> <td class="row2"><b><?php echo ( $board_config['gzip_compress'] ) ? $lang['ON'] : $lang['OFF']; ?></b></td> </tr> + <!-- tr> + <td class="row1" colspan="4"><?php echo sprintf($lang['Record_online_users'], $board_config['record_online_users'], create_date($board_config['default_dateformat'], $board_config['record_online_date'], $board_config['board_timezone'])); ?></td> + </tr --> </table> <h1><?php echo $lang['Admin_log']; ?></h1> @@ -470,23 +486,6 @@ elseif ( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) </tr> </table></form> - </td> - </tr> -</table> - -<script language="Javascript" type="text/javascript"> - // - // Should really check the browser to stop this whining ... - // - function marklist(status) - { - for (i = 0; i < document.inactive.length; i++) - { - document.inactive.elements[i].checked = status; - } - } -</script> - <?php page_footer(); diff --git a/phpBB/admin/page_header_admin.php b/phpBB/admin/page_header_admin.php index dffbc6cd12..a7e8abd282 100644 --- a/phpBB/admin/page_header_admin.php +++ b/phpBB/admin/page_header_admin.php @@ -64,6 +64,8 @@ header("Content-type: text/html; charset=" . $lang['ENCODING']); <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> +<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $lang['ENCODING']; ?>"> +<meta http-equiv="Content-Style-Type" content="text/css"> <link rel="stylesheet" href="subSilver.css" type="text/css"> <?php |