diff options
author | Bogomil Shopov (Kolab Systems) <shopov@kolabsys.com> | 2011-06-16 11:29:18 (GMT) |
---|---|---|
committer | Bogomil Shopov (Kolab Systems) <shopov@kolabsys.com> | 2011-06-16 11:29:18 (GMT) |
commit | 223404104f9a4560918febf54a11d883da3fe0ae (patch) | |
tree | e01c0491c25b352a1e46a5242366ad16a84e2663 | |
parent | ec0aa25b4658cdfaa46e72f68b77d2d35fac9213 (diff) | |
download | kasync-223404104f9a4560918febf54a11d883da3fe0ae.tar.gz |
Fixing problem with not-showing mail folders. Horde alrternative of: https://bugzilla.kolabsys.com/show_bug.cgi?id=98#c15HEADmaster
-rwxr-xr-x | list.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -173,7 +173,10 @@ function ReturnDataArray($list,$type) } //mail -$mails= ReturnDataArray($list,""); +$mails1= ReturnDataArray($list,""); +$mails2= ReturnDataArray($list,"mail"); + +$mails=array_merge($mails1,$mails2); //contact $conts = ReturnDataArray($list,'contact'); |