fixed uw bug with folder deleting with a delimeter at the end
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 21 Apr 2000 03:33:22 +0000 (03:33 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 21 Apr 2000 03:33:22 +0000 (03:33 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@448 7612ce4b-ef26-0410-bec9-ea0150e637f0

BUG
functions/imap_mailbox.php

diff --git a/BUG b/BUG
index b47df8f31f7a9e790464aa4676b4a2e98950c036..e38f91f98eae74439a01825475bf8ea33420ede0 100644 (file)
--- a/BUG
+++ b/BUG
@@ -1,9 +1,6 @@
 Known BUGS to be fixed before 0.4pre1:
 
   -    LDAP preferences in conf.pl are not working.
 Known BUGS to be fixed before 0.4pre1:
 
   -    LDAP preferences in conf.pl are not working.
-  -    Next/Previous while viewing a message should take into account 
-       the way that the mailbox is sorted.  Right now, it just does it 
-                by the next message id.
   -    If a new message comes in while still browsing cached message 
        list, the space is allocated, but it is blank.
 (lme)  I'm not convinced that the cache gets deleted all the time.  I'll 
   -    If a new message comes in while still browsing cached message 
        list, the space is allocated, but it is blank.
 (lme)  I'm not convinced that the cache gets deleted all the time.  I'll 
@@ -15,6 +12,9 @@ Known BUGS to be fixed before 0.4pre1:
 
 
 --SQUASHED--
 
 
 --SQUASHED--
+(lme)  Next/Previous while viewing a message should take into account 
+       the way that the mailbox is sorted.  Right now, it just does it 
+                by the next message id.
 (lme)  Special folders don't get listed at the top of folder list
 (lme)  The icon for message sorting doesn't always stay.  It usually 
        reverts back to the date.
 (lme)  Special folders don't get listed at the top of folder list
 (lme)  The icon for message sorting doesn't always stay.  It usually 
        reverts back to the date.
index 2b0ce28a2638ead881de2251a34749dd1b481276..ecb5dd24c0308ff3b30d046e4efc52e3521ce853 100755 (executable)
          if ($flags) {
             $boxes[$g]["flags"] = explode(" ", $flags);
          }
          if ($flags) {
             $boxes[$g]["flags"] = explode(" ", $flags);
          }
-
+                       for ($i=0; $i < count($boxes[$g]["flags"]); $i++) {
+                               if ($boxes[$g]["flags"][$i] == "noselect") {
+                                       $boxes[$g]["unformatted-dm"] = $boxes[$g]["unformatted-dm"].$dm;
+                                       echo $boxes[$g]["unformatted-dm"]." - debug<br>";
+                               }
+                       }
       }
       return $boxes;
    }
       }
       return $boxes;
    }