X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Foptions_order.php;h=0681adab44d3f2f6502db8ead2366287fdbee0b8;hb=15e6162eacc97158393bc75aed3afeb7b19c24a6;hp=f253b456b4a6b9453e796d7a8c609e25cc6bfef8;hpb=245a6892bf5c780904ef9677f24d624ea17e0749;p=squirrelmail.git diff --git a/src/options_order.php b/src/options_order.php index f253b456..0681adab 100644 --- a/src/options_order.php +++ b/src/options_order.php @@ -1,48 +1,56 @@
-
-
-
+ + +
+ + + + + +

-
+ 1) { + if (! isset($method)) { $method = ''; } + + if ($method == 'up' && $num > 1) { $prev = $num-1; $tmp = $index_order[$prev]; $index_order[$prev] = $index_order[$num]; $index_order[$num] = $tmp; - } else if ($method == "down" && $num < count($index_order)) { + } else if ($method == 'down' && $num < count($index_order)) { $next = $num++; $tmp = $index_order[$next]; $index_order[$next] = $index_order[$num]; $index_order[$num] = $tmp; - } else if ($method == "remove" && $num) { + } else if ($method == 'remove' && $num) { for ($i=1; $i < 8; $i++) { removePref($data_dir, $username, "order$i"); } @@ -75,9 +85,13 @@ $index_order = array(); $index_order = $new_ary; if (count($index_order) < 1) { - include "../src/load_prefs.php"; + include_once('../src/load_prefs.php'); } - } else if ($method == "add" && $add) { + } else if ($method == 'add' && $add) { + // User should not be able to insert PHP-code here + $add = str_replace ('', '..', $add); + $add = str_replace ('<%', '..', $add); $index_order[count($index_order)+1] = $add; } @@ -86,57 +100,61 @@ setPref($data_dir, $username, "order$i", $index_order[$i]); } } - echo "
"; - echo "
\n"; + echo '
' . "\n"; echo _("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."); - echo "

"; + echo '

'; if (count($index_order)) { - echo "
"; - echo "\n"; + echo '
' . "\n"; for ($i=1; $i <= count($index_order); $i++) { $tmp = $index_order[$i]; - echo ""; + echo ''; echo "\n"; - echo "\n"; + echo '' . "\n"; echo "\n"; - echo "\n"; - echo "' . "\n"; + echo '\n"; - echo "\n"; - echo "\n"; + echo '' . "\n"; + echo '\n"; echo "\n"; } echo "
". _("up") ." |  | ". _("down") . " | "; + echo ' | '; // Always show the subject if ($tmp != 4) - echo "" . _("remove") . ""; + echo "" . _("remove") . ''; echo " - " . $available[$tmp] . " - ' . $available[$tmp] . "
\n"; - echo "
"; } if (count($index_order) != count($available)) { - echo "
"; - echo "'; + for ($i=1; $i <= count($available); $i++) { + $found = false; + for ($j=1; $j <= count($index_order); $j++) { + if ($index_order[$j] == $i) { + $found = true; + } + } + if (!$found) { + echo ""; } } - if (!$found) { - echo ""; - } - } - echo ""; - echo ""; - echo ""; - echo "
"; + echo ''; + echo ''; + echo ''; + echo ''; } - echo "
" . _("Return to options page") . "
"; + echo '

' . _("Return to options page") . '


'; ?> -
+
+ +
+ + +