Browse Source

Fixed bug with courier not showing "none" option for subfolders.
----------------------------------------------------------------------

thomppj 23 years ago
parent
commit
a1e30eddf9
1 changed files with 2 additions and 3 deletions
  1. 2 3
      src/folders.php

+ 2 - 3
src/folders.php

@@ -141,10 +141,9 @@ require_once('../functions/plugin.php');
    echo _("as a subfolder of");
    echo "<BR>";
    echo "<TT><SELECT NAME=subfolder>\n";
-   if (strtolower($imap_server_type) != "courier"){
-     if ($default_sub_of_inbox == false)
+   if ($default_sub_of_inbox == false) {
        echo '<OPTION SELECTED VALUE="">[ '._("None")." ]\n";
-     else
+   } else {
        echo '<OPTION VALUE="">[ '._("None")." ]\n";
    }