data_dir doesn't need to be readable. It has to executable, but that's
[squirrelmail.git] / src / options_order.php
index d08454c6d876075f8753f2777d64696bf3ca47ff..a91f865da6d66a8ceec8032868d824b4faa17daf 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * options_order.php
  *
- * Copyright (c) 1999-2004 The SquirrelMail Project Team
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Displays messagelist column order options
@@ -28,7 +28,7 @@ require_once(SM_PATH . 'functions/html.php');
 require_once(SM_PATH . 'functions/forms.php');
 
 /* get globals */
-sqgetGlobalVar('num',       $num,       SQ_GET);  
+sqgetGlobalVar('num',       $num,       SQ_GET);
 sqgetGlobalVar('add',       $add,       SQ_POST);
 
 sqgetGlobalVar('submit',    $submit);
@@ -38,23 +38,23 @@ sqgetGlobalVar('method',    $method);
 displayPageHeader($color, 'None');
 
    echo
-   html_tag( 'table', '', 'center', '', 'width="95%" border="0" cellpadding="1" cellspacing="0"' ) . 
-   html_tag( 'tr' ) . 
+   html_tag( 'table', '', 'center', '', 'width="95%" border="0" cellpadding="1" cellspacing="0"' ) .
+   html_tag( 'tr' ) .
    html_tag( 'td', '', 'center', $color[0] ) .
    '<b>' . _("Options") . ' - ' . _("Index Order") . '</b>' .
-   html_tag( 'table', '', '', '', 'width="100%" border="0" cellpadding="8" cellspacing="0"' ) . 
-   html_tag( 'tr' ) . 
+   html_tag( 'table', '', '', '', 'width="100%" border="0" cellpadding="8" cellspacing="0"' ) .
+   html_tag( 'tr' ) .
    html_tag( 'td', '', 'center', $color[4] );
+
     $available[1] = _("Checkbox");
     $available[2] = _("From");
     $available[3] = _("Date");
     $available[4] = _("Subject");
     $available[5] = _("Flags");
     $available[6] = _("Size");
-    
+
     if (! isset($method)) { $method = ''; }
+
     if ($method == 'up' && $num > 1) {
         $prev = $num-1;
         $tmp = $index_order[$prev];
@@ -67,7 +67,7 @@ displayPageHeader($color, 'None');
         $index_order[$num] = $tmp;
     } else if ($method == 'remove' && $num) {
         for ($i=1; $i < 8; $i++) {
-            removePref($data_dir, $username, "order$i"); 
+            removePref($data_dir, $username, "order$i");
         }
         for ($j=1,$i=1; $i <= count($index_order); $i++) {
            if ($i != $num) {
@@ -87,7 +87,7 @@ displayPageHeader($color, 'None');
         $add = str_replace ('<%', '..', $add);
         $index_order[count($index_order)+1] = $add;
     }
+
     if ($method) {
         for ($i=1; $i <= count($index_order); $i++) {
            setPref($data_dir, $username, "order$i", $index_order[$i]);
@@ -100,7 +100,7 @@ displayPageHeader($color, 'None');
                     )
                 ) ,
             '', '', '', 'width="65%" border="0" cellpadding="0" cellspacing="0"' ) . "<br />\n";
+
     if (count($index_order))
     {
         echo html_tag( 'table', '', '', '', ' cellspacing="0" cellpadding="0" border="0"' ) . "\n";
@@ -116,7 +116,7 @@ displayPageHeader($color, 'None');
             if ($tmp != 4)
                echo '<small><a href="options_order.php?method=remove&amp;num=' . $i . '">' . _("remove") . '</a></small>';
             else
-               echo '&nbsp;'; 
+               echo '&nbsp;';
             echo '</td>';
             echo html_tag( 'td', '<small>&nbsp;-&nbsp;</small>' );
             echo html_tag( 'td', $available[$tmp] );
@@ -124,7 +124,7 @@ displayPageHeader($color, 'None');
         }
         echo '</table>' . "\n";
     }
-    
+
     if (count($index_order) != count($available)) {
 
         $opts = array();
@@ -146,7 +146,7 @@ displayPageHeader($color, 'None');
         echo addSubmit(_("Add"), 'submit');
         echo '</form>';
     }
+
     echo html_tag( 'p', '<a href="../src/options.php">' . _("Return to options page") . '</a></p><br />' );
 
 ?>
@@ -155,4 +155,4 @@ displayPageHeader($color, 'None');
 
 </td></tr>
 </table>
-</body></html>
+</body></html>
\ No newline at end of file