mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Couple of X/HTML 4.01 Transitional validation errors
git-svn-id: file:///svn/phpbb/trunk@2814 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
dd74309709
commit
66295f4bda
2 changed files with 18 additions and 17 deletions
|
@ -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();
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue