[Vtigercrm-commits] [vtiger-commits] r6606 - /vtigercrm/trunk/modules/Webmails/WebmailsAjax.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Sun May 28 06:20:45 EDT 2006
Author: mmbrich
Date: Sun May 28 04:20:44 2006
New Revision: 6606
Log:
readonly causes duplicates
Modified:
vtigercrm/trunk/modules/Webmails/WebmailsAjax.php
Modified: vtigercrm/trunk/modules/Webmails/WebmailsAjax.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/WebmailsAjax.php (original)
+++ vtigercrm/trunk/modules/Webmails/WebmailsAjax.php Sun May 28 04:20:44 2006
@@ -39,7 +39,7 @@
$account_name=$temprow["account_name"];
$show_hidden=$_REQUEST["show_hidden"];
- $mbox = getImapMbox($mailbox,$temprow,"true");
+ $mbox = getImapMbox($mailbox,$temprow);
$search = imap_search($mbox, "NEW ALL");
if($search === false) {echo "";flush();exit();}
@@ -100,7 +100,7 @@
$i=0;
foreach ($_SESSION["mailboxes"] as $key => $val) {
$mailbox=$val;
- $mbox = getImapMbox($mailbox,$temprow,"true");
+ $mbox = getImapMbox($mailbox,$temprow);
$search = imap_search($mbox, "NEW ALL");
if($search != false) {
More information about the vtigercrm-commits
mailing list