Do some HTML4 fixes and upgrade our HTML version to 4.01.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 23 Oct 2002 11:59:04 +0000 (11:59 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 23 Oct 2002 11:59:04 +0000 (11:59 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3943 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/page_header.php
src/addrbook_popup.php
src/folders.php
src/login.php
src/webmail.php

index b3a3dbd00fcf20bdb9cad24c8128c24c7a837860..662807a69a6ed8e19748778261155ef0ad9b5c40 100644 (file)
@@ -30,7 +30,7 @@ function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE
     }
     global $theme_css, $custom_css;
 
-    echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' .
+    echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">' .
          "\n\n<HTML>\n<HEAD>\n";
 
     if ( !isset( $custom_css ) || $custom_css == 'none' ) {
index 99abf0255236c6667c50b66868673f9eabdece17..23f21cf7c34c718f4658378840d3a14179249506 100644 (file)
@@ -19,7 +19,7 @@ require_once(SM_PATH . 'include/validate.php');
 require_once(SM_PATH . 'functions/addressbook.php');
    
 ?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
 
 <HTML>
     <HEAD>
index e480a6b6e109b95212b51fe2e883beff6ccd1174..d99e96bef891ea570f630b88e58550e8be1b0a83 100644 (file)
@@ -238,7 +238,7 @@ echo html_tag( 'tr',
 
 
 /** UNSUBSCRIBE FOLDERS **/
-echo html_tag( 'table', '', 'center', '', 'width="70%" cols="2" cellpadding="4" cellspacing="0" border="0"' ) .
+echo html_tag( 'table', '', 'center', '', 'width="70%" cellpadding="4" cellspacing="0" border="0"' ) .
             html_tag( 'tr',
                 html_tag( 'td', '<b>' . _("Unsubscribe") . '/' . _("Subscribe") . '</b>', 'center', $color[9], 'colspan="2"' )
             ) .
index 89d839305377d92854261b2b8156ded8f9e59983..65e0499916b11ab9bdb303a75e96737fa298b52f 100644 (file)
@@ -118,7 +118,7 @@ html_tag( 'table',
                                     '<input type=hidden name="just_logged_in" value=1>' . "\n",
                                 'left', '', 'width="*"' )
                             ) ,
-                        'center', '#ffffff', 'border="0" cols="2" width="100%"' ) ,
+                        'center', '#ffffff', 'border="0" width="100%"' ) ,
                     'left', '#FFFFFF' )
                 ) . 
                 html_tag( 'tr',
@@ -126,7 +126,7 @@ html_tag( 'table',
                         '<center><input type="submit" value="' . _("Login") . '"></center>',
                     'left' )
                 ),
-            '', '#ffffff', 'border="0" cols="1" width="350"' ),
+            '', '#ffffff', 'border="0" width="350"' ) . '</center>',
         'center' )
     ) ,
 '', '#ffffff', 'border="0" cellspacing="0" cellpadding="0" width="100%"' ) .
index 8e9c76c09f626b0d03eb61463ee8b515cf469158..2ff4115f6f34e58e4fbd277ebb5e792ba7ffe24d 100644 (file)
@@ -93,10 +93,10 @@ if ($left_size == "") {
 }
 
 if ($location_of_bar == 'right') {
-    echo "<frameset cols=\"*, $left_size\" frameborder=\"1\" id=\"fs1\">";
+    echo "<frameset cols=\"*, $left_size\" id=\"fs1\">";
 }
 else {
-    echo "<frameset cols=\"$left_size, *\" frameborder=\"1\" id=\"fs1\">";
+    echo "<frameset cols=\"$left_size, *\" id=\"fs1\">";
 }
 
 /*
@@ -129,12 +129,12 @@ if ($right_frame == 'right_main.php') {
 }
 
 if ($location_of_bar == 'right') {
-    echo "<FRAME SRC=\"$right_frame_url\"  NAME=\"right\" frameborder=\"0\">" .
-         '<FRAME SRC="left_main.php"  NAME="left" frameborder="0">';
+    echo "<FRAME SRC=\"$right_frame_url\"  NAME=\"right\" frameborder=\"1\">" .
+         '<FRAME SRC="left_main.php"  NAME="left" frameborder="1">';
 }
 else {
-    echo '<FRAME SRC="left_main.php"  NAME="left" frameborder="0">'.
-         "<FRAME SRC=\"$right_frame_url\"  NAME=\"right\" frameborder=\"0\">";
+    echo '<FRAME SRC="left_main.php"  NAME="left" frameborder="1">'.
+         "<FRAME SRC=\"$right_frame_url\"  NAME=\"right\" frameborder=\"1\">";
 }
 do_hook('webmail_bottom');
 ?>