Replacing deprecated HTML "center" element.
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 5 Feb 2006 11:18:50 +0000 (11:18 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 5 Feb 2006 11:18:50 +0000 (11:18 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10645 7612ce4b-ef26-0410-bec9-ea0150e637f0

25 files changed:
functions/display_messages.php
functions/mime.php
plugins/abook_take/functions.php
plugins/administrator/options.php
plugins/change_password/options.php
plugins/filters/options.php
plugins/filters/spamoptions.php
plugins/fortune/functions.php
plugins/info/options.php
plugins/listcommands/mailout.php
plugins/mail_fetch/fetch.php
plugins/message_details/message_details_top.php
plugins/newmail/newmail.php
plugins/newmail/testsound.php
plugins/spamcop/options.php
plugins/translate/options.php
src/about.php
src/addrbook_search_html.php
src/compose.php
src/help.php
src/image.php
src/login.php
src/options_highlight.php
src/vcard.php
src/view_text.php

index 17fc090f8249797c93c11d4eb10154666265e645..fb8b6f87510bbbdd272253045d5cf036c7d16063 100644 (file)
@@ -107,7 +107,7 @@ function logout_error( $errString, $errTitle = '' ) {
     displayHtmlHeader( $org_name.' - '.$errTitle, '', false );
 
     echo '<body text="'.$color[8].'" bgcolor="'.$color[4].'" link="'.$color[7].'" vlink="'.$color[7].'" alink="'.$color[7]."\">\n\n".
-         '<center>';
+         '<div style="text-align: center;">';
 
     if (isset($org_logo) && ($org_logo != '')) {
         echo '<img src="'.$org_logo.'" alt="'.sprintf(_("%s Logo"), $org_name).
@@ -127,7 +127,7 @@ function logout_error( $errString, $errTitle = '' ) {
          '<font color="'.$color[2].'"><b>'.
          '<a href="'.$base_uri.'src/login.php" target="'.$frame_top.'">'.
          _("Go to the login page") . '</a></b></font></td></tr>'.
-         '</table></td></tr></table></center></body></html>';
+         '</table></td></tr></table></div></body></html>';
 }
 
 /**
index 490aa43e0e7c0abf48f65b2f7619edea114eef06..d8ab3cbdbe31f1c0ef590343b4c92ec1ff30f501 100644 (file)
@@ -451,7 +451,7 @@ function formatBody($imap_stream, $message, $color, $wrap_at, $ent_num, $id, $ma
         if (isset($passed_ent_id)) {
             $link .= '&amp;passed_ent_id='.$passed_ent_id;
         }
-        $body .= '<center><small><a href="download.php?absolute_dl=true&amp;' .
+        $body .= '<div style="text-align: center;"><small><a href="download.php?absolute_dl=true&amp;' .
             $link . '">' . _("Download this as a file") .  '</a>';
         if ($view_unsafe_images) {
             $text = _("Hide Unsafe Images");
@@ -466,7 +466,7 @@ function formatBody($imap_stream, $message, $color, $wrap_at, $ent_num, $id, $ma
         if($text != '') {
             $body .= '&nbsp;|&nbsp;<a href="read_body.php?' . $link . '">' . $text . '</a>';
         }
-        $body .= '</small></center><br />' . "\n";
+        $body .= '</small></div><br />' . "\n";
     }
     return $body;
 }
index 98bcc6b70abcf2a7e36178276b4e807d3c9b848e..0e046eb72b09303826a87f00ed859ea7273f58c8 100644 (file)
@@ -57,7 +57,7 @@ function abook_take_read()
     global $message;
 
     echo '<br />' . addForm(SM_PATH . 'plugins/abook_take/take.php') .
-         '<center>' . "\n";
+         '<div style="text-align: center;">' . "\n";
 
     if (isset($message->rfc822_header->reply_to))
         abook_take_read_array($message->rfc822_header->reply_to);
@@ -69,7 +69,7 @@ function abook_take_read()
         abook_take_read_array($message->rfc822_header->to);
 
     echo addSubmit(_("Take Address")) .
-         '</center></form>';
+         '</div></form>';
 }
 
 function abook_take_pref()
index bc17ddf5bad95594b1e372172bd1d1b58024e78e..7faf33dd01fdff348ea97e3b60cd8a58cfb4ef32 100644 (file)
@@ -272,7 +272,7 @@ if ( sqgetGlobalVar('switch', $switch, SQ_GET) ) {
 }
 
 echo '<form action="options.php" method="post" name="options">' .
-     '<center><table width="95%" bgcolor="'.$color[5].'"><tr><td>'.
+     '<div style="text-align: center;"><table width="95%" bgcolor="'.$color[5].'"><tr><td>'.
      '<table width="100%" cellspacing="0" bgcolor="'.$color[4].'">'.
      '<tr bgcolor="'.$color[5].'"><th colspan="2">'.
      _("Configuration Administrator").'</th></tr>'.
@@ -581,7 +581,7 @@ if ( $colapse['Group8'] == 'off' ) {
                 $i++;
             }
         }
-        echo '<tr><td colspan="2"><input type="hidden" name="plg" value="on" /><center><table>';
+        echo '<tr><td colspan="2"><input type="hidden" name="plg" value="on" /><div style="text-align: center;"><table>';
         foreach ( $op_plugin as $plg ) {
             if ( in_array( $plg, $plugins ) ) {
                 $sw = ' checked="checked"';
@@ -598,7 +598,7 @@ if ( $colapse['Group8'] == 'off' ) {
                  "<td><input$sw type=\"checkbox\" name=\"plgs_$plg\" /></td>".
                  "</tr>\n";
         }
-        echo '</table></center></td></tr>';
+        echo '</table></div></td></tr>';
     } else {
         echo '<tr><td colspan="2" align="center">'.
              sprintf(_("Plugin directory could not be found: %s"), $plugpath).
@@ -609,7 +609,7 @@ echo '<tr bgcolor="'.$color[5].'"><th colspan="2"><input value="'.
      _("Change Settings").'" type="submit" /><br />'.
      '<a href="'.SM_PATH.'src/configtest.php" target="_blank">'.
      _("Test Configuration")."</a></th></tr>\n".
-     '</table></td></tr></table></center></form>';
+     '</table></td></tr></table></div></form>';
 
 /*
     Write the options to the file.
index 901a096dd274d65a58ef170c32fcdca213e80847..58b18cbec94bf5c158ebc16fac54242daf9faabe 100644 (file)
@@ -88,7 +88,7 @@ do_hook('change_password_init');
 <br />
 <table align="center" cellpadding="2" cellspacing="2" border="0">
 <tr><td bgcolor="<?php echo $color[0] ?>">
-   <center><b><?php echo _("Change Password") ?></b></center>
+   <div style="text-align: center;"><b><?php echo _("Change Password") ?></b></div>
 </td><?php
 
 if (isset($Messages) && count($Messages) > 0) {
index 36d67a180ebf0cc70c04d8860c52fbaf578a0f5a..58ecfddd5c8c59085183bbd315682ac8330559b9 100644 (file)
@@ -88,7 +88,7 @@ if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) {
 } elseif (sqgetGlobalVar('user_submit',$user_submit,SQ_POST)) {
     sqgetGlobalVar('filters_user_scan_set',$filters_user_scan_set,SQ_POST);
     setPref($data_dir, $username, 'filters_user_scan', $filters_user_scan_set);
-    echo '<br /><center><b>'._("Saved Scan type")."</b></center>\n";
+    echo '<br /><div style="text-align: center;"><b>'._("Saved Scan type")."</b></div>\n";
 }
 
    $filters = load_filters();
@@ -97,14 +97,14 @@ if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) {
    echo html_tag( 'table',
             html_tag( 'tr',
                 html_tag( 'td',
-                    '<center><b>' . _("Options") . ' - ' . _("Message Filtering") . '</b></center>' ,
+                    '<div style="text-align: center;"><b>' . _("Options") . ' - ' . _("Message Filtering") . '</b></div>' ,
                     'left', $color[0]
                 )
             ),
             'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"'
         ) .
         '<br /><form method="post" action="options.php">'.
-        '<center>'.
+        '<div style="text-align: center;">'.
         html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) .
             html_tag( 'tr' ) .
                 html_tag( 'th', _("What to Scan:"), 'right', '', 'style="white-space: nowrap;"' ) .
@@ -124,7 +124,7 @@ if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) {
         '</td>'.
         html_tag( 'td', '<input type="submit" name="user_submit" value="' . _("Save") . '" />', 'left' ) .
         '</table>'.
-        '</center>'.
+        '</div>'.
         '</form>'.
 
         html_tag( 'div', '[<a href="options.php?action=add">' . _("New") .
index 2457cc70e42ce65644d4ecccafc925cd18bc8b3d..b4977941ce7b39f1e7d12af42109b634140dd574 100644 (file)
@@ -96,7 +96,7 @@ if (isset($action) && $action == 'spam') {
     }
 
     echo '<form method="post" action="spamoptions.php">'.
-        '<center>'.
+        '<div style="text-align: center;">'.
         html_tag( 'table', '', '', '', 'width="85%" border="0" cellpadding="2" cellspacing="0"' ) .
             html_tag( 'tr' ) .
                 html_tag( 'th', _("Move spam to:"), 'right', '', 'style="white-space: nowrap;"' ) .
@@ -173,13 +173,13 @@ if (isset($action) && $action == 'spam') {
         html_tag( 'td', '<input type="submit" name="spam_submit" value="' . _("Save") . '" />', 'center', '', 'colspan="2"' )
     ) . "\n" .
         '</table>'.
-        '</center>'.
+        '</div>'.
         '</form>';
 } else {
     // action is not set or action is not spam
     echo html_tag( 'p', '', 'center' ) .
          '[<a href="spamoptions.php?action=spam">' . _("Edit") . '</a>]' .
-         ' - [<a href="../../src/options.php">' . _("Done") . '</a>]</center><br /><br />';
+         ' - [<a href="../../src/options.php">' . _("Done") . '</a>]</div><br /><br />';
     printf( _("Spam is sent to %s."), ($filters_spam_folder?'<b>'.htmlspecialchars(imap_utf7_decode_local($filters_spam_folder)).'</b>':'[<i>'._("not set yet").'</i>]' ) );
     echo '<br />';
     printf( _("Spam scan is limited to %s."), '<b>' . ( ($filters_spam_scan == 'new')?_("Unread messages only"):_("All messages") ) . '</b>' );
index cd98d0f24d1147217d968715e757eefdae3b358b..5bded0573c64049cd91385523383e75ba8130bf2 100644 (file)
@@ -49,19 +49,19 @@ function fortune_function() {
         $fortune_command=$fortune_location;
     }
 
-    echo "<center><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"$color[10]\">\n".
+    echo "<div style="text-align: center;"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"$color[10]\">\n".
         "<tr><td><table width=\"100%\" cellpadding=\"2\" cellspacing=\"1\" border=\"0\" bgcolor=\"$color[5]\">\n".
         "<tr><td align=\"center\">\n";
     echo '<table><tr><td>';
     if (!$exist) {
         printf(_("%s is not found."),$fortune_location);
     } else {
-        echo "<center><em>" . _("Today's Fortune") . "</em></center><pre>\n" .
+        echo "<div style="text-align: center;"><em>" . _("Today's Fortune") . "</em></div><pre>\n" .
             htmlspecialchars(shell_exec($fortune_command)) .
             "</pre>\n";
     }
 
-    echo '</td></tr></table></td></tr></table></td></tr></table></center>';
+    echo '</td></tr></table></td></tr></table></td></tr></table></div>';
 }
 
 /**
index a1bf81d8ec02d2491179bdfd02fe553e71a5b026..f5ee2a4c2c52ee6940572bff4a217711caf1479e 100644 (file)
@@ -68,10 +68,10 @@ $list = array ('TEST_0',
                'TEST_8',
                'TEST_9');
 
-echo '<br /><center><b>'._("IMAP server information")."</b></center><br />\n".
-     '<center><table bgcolor="'.$color[3].'" width="100%" border="1" cellpadding="2">'.
+echo '<br /><div style="text-align: center;"><b>'._("IMAP server information")."</b></div><br />\n".
+     '<div style="text-align: center;"><table bgcolor="'.$color[3].'" width="100%" border="1" cellpadding="2">'.
      '<tr><td bgcolor="'.$color[3]."\"><br />\n".
-     '<center><table width="95%" border="1" bgcolor="'.$color[3]."\">\n".
+     '<div style="text-align: center;"><table width="95%" border="1" bgcolor="'.$color[3]."\">\n".
      '<tr><td bgcolor="'.$color[4].'"><b>'.
      _("Server Capability response:").
      "</b><br />\n";
@@ -98,7 +98,7 @@ else {
          'default_charset = '.htmlspecialchars($default_charset)."\n";
 }
 
-echo "<br /></td></tr></table></center><br />\n";
+echo "<br /></td></tr></table></div><br />\n";
 
 
 if ($submit == 'submit') {
@@ -129,7 +129,7 @@ elseif (!$submit || $submit == 'default')  {
 }
 
 echo "<form action=\"options.php\" method=\"post\">\n".
-     "<center><table border=\"1\">\n".
+     "<div style="text-align: center;"><table border=\"1\">\n".
      '<tr><th>'. _("Select").
      '</th><th>'._("Test Name").
      '</th><th>'._("IMAP command string")."</th></tr>\n".
@@ -148,12 +148,12 @@ foreach($type as $index=>$value) {
          addInput($index, $value, 60);
 }
 
-echo "</td></tr></table></center><br />\n".
-     '<center>'.
+echo "</td></tr></table></div><br />\n".
+     '<div style="text-align: center;">'.
      addSubmit('submit','submit').
      addSubmit('clear','submit').
      addSubmit('default','submit').
-     "</center><br /></form>\n";
+     "</div><br /></form>\n";
 
 $tests = array();
 
@@ -172,7 +172,7 @@ if ($submit == 'submit') {
             $starttime = (float)$sec + (float)$usec;
         }
 
-        echo '<center><table width="95%" border="0" bgcolor="'.$color[4]."\">\n".
+        echo '<div style="text-align: center;"><table width="95%" border="0" bgcolor="'.$color[4]."\">\n".
              '<tr><td><b>'.$tests[$i]."</b></td></tr>\n".
              '<tr><td><small><b><font color="'.$color[7].'">'.
             _("Request:")."</font></b></small></td></tr>\n";
@@ -194,10 +194,10 @@ if ($submit == 'submit') {
                 '<tr><td>'.sprintf(_("%s ms"),round((($endtime - $starttime)*1000),3))."</td></tr>\n";
         }
 
-        echo "</table></center><br />\n";
+        echo "</table></div><br />\n";
     }
 }
-echo '</td></tr></table></center>';
+echo '</td></tr></table></div>';
 sqimap_logout($imap_stream);
 
 /**
index 5667d44a098f58f8e282bab633127d214675de93..9a76fd3bd3a854723436b19a8a9faeeab86f1289 100644 (file)
@@ -83,5 +83,5 @@ echo '<br />' .
     addHidden('mailbox', $mailbox) .
     addSubmit(_("Send Mail"), 'send');
 ?>
-<br /><br /></center>
+<br /><br /></div>
 </form></td></tr></table></p></body></html>
\ No newline at end of file
index 205ad317cac8ee264541e5c596516062962b5ec7..268f22e4624563555f18e0b15d24f8b27a429038 100644 (file)
@@ -109,7 +109,7 @@ function Mail_Fetch_Select_Server($mailfetch) {
 $mailfetch = Mail_Fetch_Servers();
 displayPageHeader($color, 'None');
 
-echo '<br /><center>';
+echo '<br /><div style="text-align: center;">';
 
 echo html_tag( 'table',
          html_tag( 'tr',
@@ -321,6 +321,6 @@ for ($i_loop=$i_start;$i_loop<$i_stop;$i_loop++) {
     Mail_Fetch_Status(_("Done"));
 }
 ?>
-</center>
+</div>
 </body>
 </html>
\ No newline at end of file
index 8354a718f1f45ab3e5fd03e7c41fb0c753b85b89..67d4f1a33af6acc71bf7c94ef733617a3fe6b67e 100644 (file)
@@ -35,7 +35,7 @@ sqgetGlobalVar('passed_id', $passed_id, SQ_GET);
 sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
 
 echo "<body text=\"$color[8]\" bgcolor=\"$color[3]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n" .
-     '<center>' .
+     '<div style="text-align: center;">' .
      addForm(SM_PATH . 'src/download.php', 'GET').
      addHidden('mailbox', $mailbox).
      addHidden('passed_id', $passed_id).
@@ -44,7 +44,7 @@ echo "<body text=\"$color[8]\" bgcolor=\"$color[3]\" link=\"$color[7]\" vlink=\"
      '<input type="button" value="' . _("Print") . '" onclick="printPopup()" />&nbsp;&nbsp;'.
      '<input type="button" value="' . _("Close Window") . '" onclick="window.parent.close()" />&nbsp;&nbsp;'.
      addSubmit(_("Save Message")).
-     '</form></center>'.
+     '</form></div>'.
      '</body>'.
      "</html>\n";
 ?>
\ No newline at end of file
index 465df15e5b21bc34f5263d32a3f745ddf9052b9d..a6d669918523186bf45263bbc1c2fa1403b85fd3 100644 (file)
@@ -24,7 +24,7 @@ $numnew = (int)$numnew;
    displayHtmlHeader( _("New Mail"), '', FALSE );
 
    echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">'."\n".
-        '<center>'. "\n" .
+        '<div style="text-align: center;">'. "\n" .
         html_tag( 'table', "\n" .
             html_tag( 'tr', "\n" .
                 html_tag( 'td', '<b>' . _("SquirrelMail Notice:") . '</b>', 'center', $color[0] )
@@ -41,7 +41,7 @@ $numnew = (int)$numnew;
                           'center' )
                       ) ,
                   '', '', 'width="100%" cellpadding="2" cellspacing="2" border="0"' ) .
-   '</center>' .
+   '</div>' .
    "<script language=javascript>\n".
    "<!--\n".
    "document.nm.bt.focus();\n".
index 5fd3ab33b0c03f596cd1a6e95fb10e2908cb8820..a1c7a6e16a09b6ed604db5f8ccc164cb0737d5ce 100644 (file)
@@ -23,10 +23,10 @@ echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0"
 if ( ! sqgetGlobalVar('sound', $sound, SQ_GET) ) {
     $sound = 'Click.wav';
 } elseif ( $sound == '(none)' ) {
-    echo '<center><form><br /><br />'.
+    echo '<div style="text-align: center;"><form><br /><br />'.
          '<b>' . _("No sound specified") . '</b><br /><br />'.
          '<input type="button" name="close" value="' . _("Close") . '" onclick="window.close()" />'.
-         '</form></center>'.
+         '</form></div>'.
          '</body></html>';
     return;
 }
index 7075d8bbd609c5023852fc50338cd387151d7bba..5f4f334f2ed777ff5ca24dad5d7eaca1511630b5 100755 (executable)
@@ -79,9 +79,9 @@ spamcop_load_function();
       <br />
       <table width="95%" align="center" border="0" cellpadding="2" cellspacing="0">
       <tr><td bgcolor="<?php echo $color[0]; ?>">
-        <center><b>
+        <div style="text-align: center;"><b>
         <?php echo _("Options") . " - " . _("Spam reporting"); ?>
-        </b></center>
+        </b></div>
       </td></tr></table>
       <br />
 
index 807c01c72b3d74df29bfe3f06799827d1b96a0cb..be76be2f0f4c71b862f5267056d7bff0664f8c9c 100644 (file)
@@ -27,7 +27,7 @@ displayPageHeader($color, 'None');
 
 ?>
    <table width="95%" align="center" border="0" cellpadding="1" cellspacing="0"><tr><td bgcolor="<?php echo $color[0]; ?>">
-      <center><b><?php echo _("Options") . ' - '. _("Translator"); ?></b></center>
+      <div style="text-align: center;"><b><?php echo _("Options") . ' - '. _("Translator"); ?></b></div>
    </td></tr></table>
 
    <p><?php echo _("Your server options are as follows:"); ?></p>
index 90873ae00d85994e773ac3364efd68444499e983..b0577b9a82da8f4b57a9ab4b13ff659a7c4b0345 100644 (file)
@@ -32,9 +32,9 @@ displayPageHeader($color, 'None' );
 <img src="../images/sm_logo.png" width="308" height="111"
     alt="SquirrelMail Logo" /><br />
 <table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
-<tr><td bgcolor="#dcdcdc" align="center"><center><b>
+<tr><td bgcolor="#dcdcdc" align="center"><div style="text-align: center;"><b>
 <?php echo sprintf(_("About SquirrelMail %s"),$version); ?>
-</b></center></td></tr>
+</b></div></td></tr>
 <tr><td>
 <br />
 <?php echo _("SquirrelMail is the name of the program that provides access to your email via the web."); ?>
index b2bd6fa3884fd97b2d0bfd4d5a98c6c9e4162ed0..31b6da9fa7923bfb4aab2250a19cdc3b9f1ed031 100644 (file)
@@ -195,12 +195,12 @@ html_tag( 'table',
 
 
 /* Search form */
-echo '<center>' .
+echo '<div style="text-align: center;">' .
     html_tag( 'table', '', 'center', '', 'border="0"' ) .
     html_tag( 'tr' ) .
     html_tag( 'td', '', 'left', '', 'style="white-space: nowrap;" valign="middle"' ) . "\n" .
     addForm($PHP_SELF.'?html_addr_search=true', 'post', 'f').
-    "\n<center>\n" .
+    "\n<div style="text-align: center;">\n" .
     '  <nobr><strong>' . _("Search for") . "</strong>\n";
 addr_insert_hidden();
 echo addInput('addrquery', $addrquery, 26);
@@ -227,8 +227,8 @@ if (isset($session)) {
 echo '<input type="submit" value="' . _("Search") . '" />' .
      '&nbsp;|&nbsp;<input type="submit" value="' . _("List all") .
      '" name="listall" />' . "\n" .
-     '</form></center></td></tr></table>' . "\n";
-echo '</center>';
+     '</form></div></td></tr></table>' . "\n";
+echo '</div>';
 do_hook('addrbook_html_search_below');
 /* End search form */
 
@@ -294,11 +294,11 @@ if ($addrquery == '' || ! empty($listall)) {
 }
 
 if ($addrquery == '' || sizeof($res) == 0) {
-    echo '<center>'.
+    echo '<div style="text-align: center;">'.
         addForm('compose.php','post','k');
     addr_insert_hidden();
     echo '<input type="submit" value="' . _("Return") . '" name="return" />' . "\n" .
-         '</form></center></nobr>';
+         '</form></div></nobr>';
 }
 
 $oTemplate->display('footer.tpl');
index 52f88ad27e13f7cbfd4bfb2fe2f21fda8b43d38a..d15cb2a575483f2b71f426c06a8cd02018781ffd 100644 (file)
@@ -391,9 +391,9 @@ if ($draft) {
             if ( !isset($pageheader_sent) || !$pageheader_sent ) {
                 Header("Location: $location/compose.php?saved_draft=yes&session=$composesession");
             } else {
-                echo '   <br><br><center><a href="' . $location
+                echo '   <br><br><div style="text-align: center;"><a href="' . $location
                     . '/compose.php?saved_sent=yes&amp;session=' . $composesession . '">'
-                    . _("Return") . '</a></center>';
+                    . _("Return") . '</a></div>';
             }
             exit();
         } else {
@@ -401,10 +401,10 @@ if ($draft) {
                 Header("Location: $location/right_main.php?mailbox=" . urlencode($draft_folder) .
                    "&startMessage=1&note=".urlencode($draft_message));
             } else {
-                echo '   <br><br><center><a href="' . $location
+                echo '   <br><br><div style="text-align: center;"><a href="' . $location
                     . '/right_main.php?mailbox=' . urlencode($draft_folder)
                     . '&amp;startMessage=1&amp;note=' . urlencode($draft_message) .'">'
-                    . _("Return") . '</a></center>';
+                    . _("Return") . '</a></div>';
             }
             exit();
         }
@@ -486,9 +486,9 @@ if ($send) {
             if ( !isset($pageheader_sent) || !$pageheader_sent ) {
                 Header("Location: $location/compose.php?mail_sent=yes");
             } else {
-                echo '   <br><br><center><a href="' . $location
+                echo '   <br><br><div style="text-align: center;"><a href="' . $location
                     . '/compose.php?mail_sent=yes">'
-                    . _("Return") . '</a></center>';
+                    . _("Return") . '</a></div>';
             }
             exit();
         } else {
@@ -496,10 +496,10 @@ if ($send) {
                 Header("Location: $location/right_main.php?mailbox=$urlMailbox".
                     "&startMessage=$startMessage&mail_sent=yes");
             } else {
-                echo '   <br><br><center><a href="' . $location
+                echo '   <br><br><div style="text-align: center;"><a href="' . $location
                     . "/right_main.php?mailbox=$urlMailbox"
                     . "&amp;startMessage=$startMessage&amp;mail_sent=yes\">"
-                    . _("Return") . '</a></center>';
+                    . _("Return") . '</a></div>';
             }
             exit();
         }
@@ -1114,10 +1114,10 @@ function showInputForm ($session, $values=false) {
     }
 
     if ($saved_draft == 'yes') {
-        echo '<br /><center><b>'. _("Draft Saved").'</center></b>';
+        echo '<br /><div style="text-align: center;"><b>'. _("Draft Saved").'</div></b>';
     }
     if ($mail_sent == 'yes') {
-        echo '<br /><center><b>'. _("Your Message has been sent.").'</center></b>';
+        echo '<br /><div style="text-align: center;"><b>'. _("Your Message has been sent.").'</div></b>';
     }
     if ($compose_new_win == '1') {
         echo '<table align="center" bgcolor="'.$color[0].'" width="100%" border="0">'."\n" .
index 42b236c48310fe702bcffafc7d1bd9836e77c142..1ddeeea93a9f818b52319c3d78fad50e0065aab0 100644 (file)
@@ -101,7 +101,7 @@ function get_info($doc, $pos) {
 
 echo html_tag( 'table',
         html_tag( 'tr',
-            html_tag( 'td','<center><b>' . _("Help") .'</b></center>', 'center', $color[0] )
+            html_tag( 'td','<div style="text-align: center;"><b>' . _("Help") .'</b></div>', 'center', $color[0] )
         ) ,
     'center', '', 'width="95%" cellpadding="1" cellspacing="2" border="0"' );
 
@@ -118,9 +118,9 @@ if (!isset($squirrelmail_language)) {
 if (file_exists("../help/$squirrelmail_language")) {
     $user_language = $squirrelmail_language;
 } else if (file_exists('../help/en_US')) {
-    echo "<center><font color=\"$color[2]\">"
+    echo "<div style="text-align: center;"><font color=\"$color[2]\">"
         ._("The help has not been translated to the selected language. It will be displayed in English instead.");
-    echo '</font></center><br />';
+    echo '</font></div><br />';
     $user_language = 'en_US';
 } else {
     error_box( _("Some or all of the help documents are not present!"), $color );
@@ -153,7 +153,7 @@ if ( $chapter == 0 || !isset( $helpdir[$chapter-1] ) ) {
     echo html_tag( 'table', '', 'center', '', 'cellpadding="0" cellspacing="0" border="0"' ) .
          html_tag( 'tr' ) .
          html_tag( 'td' ) .
-         '<center><b>' . _("Table of Contents") . '</b></center><br />';
+         '<div style="text-align: center;"><b>' . _("Table of Contents") . '</b></div><br />';
     echo html_tag( 'ol' );
     for ($i=0, $cnt = count($helpdir); $i < $cnt; $i++) {
         $doc = file("../help/$user_language/$helpdir[$i]");
@@ -167,7 +167,7 @@ if ( $chapter == 0 || !isset( $helpdir[$chapter-1] ) ) {
 } else {
     $doc = file("../help/$user_language/" . $helpdir[$chapter-1]);
     $help_info = get_info($doc, 0);
-    echo '<center><small>';
+    echo '<div style="text-align: center;"><small>';
     if ($chapter <= 1){
         echo '<font color="' . $color[9] . '">' . _("Previous")
              . '</font> | ';
@@ -182,7 +182,7 @@ if ( $chapter == 0 || !isset( $helpdir[$chapter-1] ) ) {
         echo ' | <a href="../src/help.php?chapter=' . ($chapter+1)
              . '">' . _("Next") . '</a>';
     }
-    echo '</small></center><br />';
+    echo '</small></div><br />';
 
     echo '<font size="5"><b>' . $chapter . ' - ' . $help_info[0]
          . '</b></font><br /><br />';
@@ -202,7 +202,7 @@ if ( $chapter == 0 || !isset( $helpdir[$chapter-1] ) ) {
         $n = $help_info[3];
     }
 
-    echo '<br /><center><a href="#pagetop">' . _("Top") . '</a></center>';
+    echo '<br /><div style="text-align: center;"><a href="#pagetop">' . _("Top") . '</a></div>';
 }
 
 do_hook('help_bottom');
index 1158ca41b839912d22d10944042428dda9c53dc8..f8b956fb282abf84607c90eaba01c06482a0c1c6 100644 (file)
@@ -40,7 +40,7 @@ echo '<br />' .
     '<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">' .
     "\n" .
     '<tr><td bgcolor="' . $color[0] . '">' .
-    '<b><center>' .
+    '<div style="text-align: center;"><b>' .
     _("Viewing an image attachment") . " - ";
 
 $msg_url = 'read_body.php?' . $QUERY_STRING;
@@ -53,7 +53,7 @@ $DownloadLink = '../src/download.php?passed_id=' . $passed_id .
                '&amp;ent_id=' . urlencode($ent_id) . '&amp;absolute_dl=true';
 
 ?>
-</b></td></tr>
+</b></div></td></tr>
 <tr><td align="center">
 <a href="<?php echo $DownloadLink; ?>"><?php echo _("Download this as a file"); ?></a>
 <br />&nbsp;</td></tr></table>
index 01a7bcec0752622129b74c916613eac8d3c1532b..c611d3e29acf5728d52ad5352327c06e0eeb9e88 100644 (file)
@@ -154,7 +154,7 @@ if(sqgetGlobalVar('mailto', $mailto)) {
 echo html_tag( 'table',
     html_tag( 'tr',
         html_tag( 'td',
-            '<center>'.
+            '<div style="text-align: center;">'.
             ( isset($org_logo) && $org_logo
               ? '<img src="' . $org_logo . '" alt="' .
                 sprintf(_("%s Logo"), $org_name) .'"' . $width_and_height .
@@ -197,10 +197,10 @@ echo html_tag( 'table',
                         ) .
                         html_tag( 'tr',
                                 html_tag( 'td',
-                                    '<center>'. addSubmit(_("Login")) .'</center>',
+                                    '<div style="text-align: center;">'. addSubmit(_("Login")) .'</div>',
                                     'left' )
                                 ),
-                        '', $color[4], 'border="0" width="350"' ) . '</center>',
+                        '', $color[4], 'border="0" width="350"' ) . '</div>',
                         'center' )
                         ) ,
                         '', $color[4], 'border="0" cellspacing="0" cellpadding="0" width="100%"' );
index f68c1da203e52393c24fbe94367cc1c05bff6f42..c2d39e831f0de24d20113a378103268a6a677951 100644 (file)
@@ -116,15 +116,15 @@ displayPageHeader($color, 'None');
 echo
 html_tag( 'table', "\n" .
     html_tag( 'tr', "\n" .
-        html_tag( 'td', '<center><b>' . _("Options") . ' - ' . _("Message Highlighting") . '</b></center>', 'left')
+        html_tag( 'td', '<div style="text-align: center;"><b>' . _("Options") . ' - ' . _("Message Highlighting") . '</b></div>', 'left')
     ),
     'center', $color[9], 'width="95%" border="0" cellpadding="1" cellspacing="0"' ) . "<br />\n" .
 html_tag( 'table', '', '', '', 'width="100%" border="0" cellpadding="1" cellspacing="0"' ) .
      html_tag( 'tr' ) . "\n" .
          html_tag( 'td', '', 'left' );
 
-echo '<center>[<a href="options_highlight.php?action=add">' . _("New") . '</a>]'.
-        ' - [<a href="options.php">'._("Done").'</a>]</center><br />'."\n";
+echo '<div style="text-align: center;">[<a href="options_highlight.php?action=add">' . _("New") . '</a>]'.
+        ' - [<a href="options.php">'._("Done").'</a>]</div><br />'."\n";
 $mhl_count = count($message_highlight_list);
 if ($mhl_count > 0) {
     echo html_tag( 'table', '', 'center', '', 'width="80%" border="0" cellpadding="3" cellspacing="0"' ) . "\n";
@@ -176,7 +176,7 @@ if ($mhl_count > 0) {
     echo "</table>\n".
         "<br />\n";
 } else {
-    echo '<center>' . _("No highlighting is defined") . "</center><br />\n".
+    echo '<div style="text-align: center;">' . _("No highlighting is defined") . "</div><br />\n".
         "<br />\n";
 }
 if ($action == 'edit' || $action == 'add') {
@@ -460,7 +460,7 @@ if ($action == 'edit' || $action == 'add') {
     echo "        </td>\n";
     echo "   </tr>\n";
     echo "</table>\n";
-    echo '<center><input type="submit" value="' . _("Submit") . "\" /></center>\n";
+    echo '<div style="text-align: center;"><input type="submit" value="' . _("Submit") . "\" /></div>\n";
     echo "</form>\n";
 }
 do_hook('options_highlight_bottom');
index 3bee7c97a7e5c69dfec2a863abde25b9cdcb76c8..995afb8cca231e5098e844eab505b50cac5d1a77 100644 (file)
@@ -40,7 +40,7 @@ displayPageHeader($color, 'None');
 
 echo '<br /><table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
         'align="center">' . "\n" .
-     '<tr><td bgcolor="' . $color[0] . '"><b><center>' .
+     '<tr><td bgcolor="' . $color[0] . '"><b><div style="text-align: center;">' .
      _("Viewing a Business Card") . " - ";
 
 $msg_url = 'read_body.php?mailbox='.urlencode($mailbox).
@@ -50,7 +50,7 @@ $msg_url = 'read_body.php?mailbox='.urlencode($mailbox).
 $msg_url = set_url_var($msg_url, 'ent_id', 0);
 
 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>' .
-     '</center></b></td></tr>';
+     '</div></b></td></tr>';
 
 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
 
@@ -140,7 +140,7 @@ foreach ($ShowValues as $k => $v) {
 </td></tr></table>
 <table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">
 <tr><td bgcolor="<?php echo $color[0]; ?>">
-<center><b><?php echo _("Add to address book"); ?></b></center>
+<div style="text-align: center;"><b><?php echo _("Add to address book"); ?></b></div>
 </td></tr>
 <tr><td align="center">
 <?php echo addForm('../src/addressbook.php', 'post', 'f_add'); ?><br />
index 959a4b901590837395f493845209b001576dabcd..685b1b0fcde3681859114b0f23b01f01f60225f6 100644 (file)
@@ -81,17 +81,17 @@ if ($type1 == 'html' || (isset($override_type1) &&  $override_type1 == 'html'))
 displayPageHeader($color, 'None');
 ?>
 <br /><table width="100%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="<?php echo $color[0]; ?>">
-<b><center>
+<b><div style="text-align: center;">
 <?php
 echo _("Viewing a text attachment") . ' - ' .
     '<a href="'.$msg_url.'">' . _("View message") . '</a>';
 ?>
-</b></td><tr><tr><td><center>
+</b></td><tr><tr><td><div style="text-align: center;">
 <?php
 echo '<a href="' . $dwnld_url . '">' . _("Download this as a file") . '</a>';
 ?>
-</center><br />
-</center></b>
+</div><br />
+</div></b>
 </td></tr></table>
 <table width="98%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="<?php echo $color[0]; ?>">
 <tr><td bgcolor="<?php echo $color[4]; ?>"><tt>