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

plugins/fortune/functions.php
plugins/squirrelspell/modules/check_me.mod
plugins/squirrelspell/modules/forget_me_not.mod
src/addrbook_search_html.php
src/help.php

index 5bded0573c64049cd91385523383e75ba8130bf2..d62dd88511ddf261ee8005347929e4fcbc9f3519 100644 (file)
@@ -49,14 +49,14 @@ function fortune_function() {
         $fortune_command=$fortune_location;
     }
 
-    echo "<div style="text-align: 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 "<div style="text-align: center;"><em>" . _("Today's Fortune") . "</em></div><pre>\n" .
+        echo "<div style=\"text-align: center;\"><em>" . _("Today's Fortune") . "</em></div><pre>\n" .
             htmlspecialchars(shell_exec($fortune_command)) .
             "</pre>\n";
     }
index ad3ad0808243d002b2c5f48221546905cf032713..7f0273bdca7400625eda7f37eb238efb39dd3819 100644 (file)
@@ -164,7 +164,7 @@ if( check_php_version ( 4, 3 ) ) {
  * Check if the execution was successful. Bail out if it wasn't.
  */
 if ($sqspell_exitcode){
-  $msg= "<div align='center'>"
+  $msg= '<div style="text-align: center;">'
      . sprintf(_("I tried to execute '%s', but it returned:"),
                $sqspell_command) . "<pre>"
      . htmlspecialchars(join("\n", $sqspell_output)) . '</pre>'
@@ -469,7 +469,7 @@ if ($errors){
   /**
    * AREN'T YOU SUCH A KNOW-IT-ALL!
    */
-  $msg='<form onsubmit="return false"><div align="center">' .
+  $msg='<form onsubmit="return false"><div style="text-align: center;">' .
        '<input type="submit" value="  ' . _("Close") .
        '  " onclick="self.close()" /></div></form>';
   sqspell_makeWindow(null, _("No errors found"), null, $msg);
index d0dcbb78e4985bd5142a7aa1dda0718f0fea5b17..069cd10b4c4cb9c217a254a9e1e51a45c2729766 100644 (file)
@@ -54,7 +54,7 @@ sqspell_writeWords($word_dic,$sqspell_use_app);
  * display the splash screen, then close it automatically after 2 sec.
  */
 $onload = "setTimeout('self.close()', 2000)";
-$msg = '<form onsubmit="return false"><div align="center">'
+$msg = '<form onsubmit="return false"><div style="text-align: center;">'
    . '<input type="submit" value="  '
    . _("Close") . '  " onclick="self.close()" /></div></form>';
 sqspell_makeWindow($onload, _("Personal Dictionary Updated"), null, $msg);
index e4dcce4b9a21076c9377e845fad09b69a559f608..1a722e48c74cd602eae2dc5e8e0f6516d4207078 100644 (file)
@@ -200,7 +200,7 @@ echo '<div style="text-align: center;">' .
     html_tag( 'tr' ) .
     html_tag( 'td', '', 'left', '', 'style="white-space: nowrap;" valign="middle"' ) . "\n" .
     addForm($PHP_SELF.'?html_addr_search=true', 'post', 'f').
-    "\n<div style="text-align: center;">\n" .
+    "\n<div style=\"text-align: center;\">\n" .
     '  <nobr><strong>' . _("Search for") . "</strong>\n";
 addr_insert_hidden();
 echo addInput('addrquery', $addrquery, 26);
index 1ddeeea93a9f818b52319c3d78fad50e0065aab0..4f42932d3a857bb8abe56939d10c87778ab435f9 100644 (file)
@@ -118,7 +118,7 @@ if (!isset($squirrelmail_language)) {
 if (file_exists("../help/$squirrelmail_language")) {
     $user_language = $squirrelmail_language;
 } else if (file_exists('../help/en_US')) {
-    echo "<div style="text-align: 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></div><br />';
     $user_language = 'en_US';