From 289832a284da50e48c6ecd4c8524cad6c7a999e2 Mon Sep 17 00:00:00 2001 From: jmunro Date: Mon, 27 May 2002 23:55:30 +0000 Subject: [PATCH] fix for folders with '*'. bug #552180 git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2876 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_mailbox.php | 1 + 1 file changed, 1 insertion(+) diff --git a/functions/imap_mailbox.php b/functions/imap_mailbox.php index f9d10d95..f3121520 100755 --- a/functions/imap_mailbox.php +++ b/functions/imap_mailbox.php @@ -567,6 +567,7 @@ function sqimap_mailbox_list($imap_stream) { $used[$k] = true; } $spec_sub = str_replace(' ', '', $box['formatted']); + $spec_sub = str_replace('*', '', $box['formatted']); /* In case of problems with preg here is a ereg version -- 2.25.1