Minor bug fix, just a misspelled variable
[squirrelmail.git] / src / options_order.php
index 20f413b39ff4781a305963c6529e843e2459f02b..56c8340a6f84fc48cc011eee2f559f2ee2fb0a24 100644 (file)
@@ -99,7 +99,7 @@ displayPageHeader($color, 'None');
                         _("The index order is the order that the columns are arranged in the message index. You can add, remove, and move columns around to customize them to fit your needs.")
                     )
                 ) ,
-            '', '', '', 'width="65%" border="0" cellpadding="0" cellspacing="0"' ) . "<br>\n";
+            '', '', '', 'width="65%" border="0" cellpadding="0" cellspacing="0"' ) . "<br />\n";
  
     if (count($index_order))
     {
@@ -127,7 +127,7 @@ displayPageHeader($color, 'None');
     
     if (count($index_order) != count($available)) {
 
-       $opts = array();
+        $opts = array();
         for ($i=1; $i <= count($available); $i++) {
             $found = false;
             for ($j=1; $j <= count($index_order); $j++) {
@@ -136,18 +136,18 @@ displayPageHeader($color, 'None');
                 }
             }
             if (!$found) {
-               $opts[$i] = $available[$i];
+                $opts[$i] = $available[$i];
             }
         }
-       
+
         echo addForm('options_order.php', 'post', 'f');
-       echo addSelect('add', $opts, '', TRUE);
+        echo addSelect('add', $opts, '', TRUE);
         echo addHidden('method', 'add');
-       echo addSubmit(_("Add"), 'submit');
+        echo addSubmit(_("Add"), 'submit');
         echo '</form>';
     }
  
-    echo html_tag( 'p', '<a href="../src/options.php">' . _("Return to options page") . '</a></p><br>' );
+    echo html_tag( 'p', '<a href="../src/options.php">' . _("Return to options page") . '</a></p><br />' );
 
 ?>
     </td></tr>