thomascube
2009-03-10 75a09466ac6843b9dd861976105c1fc3177cb208
Fix r2339 for release

2 files modified
5 ■■■■■ changed files
index.php 1 ●●●● patch | view | raw | blame | history
program/steps/mail/check_recent.inc 4 ●●●● patch | view | raw | blame | history
index.php
@@ -183,7 +183,6 @@
    'remove-attachment'  => 'attachments.inc',
    'display-attachment' => 'attachments.inc',
    'upload' => 'attachments.inc',
    'check-recent' => 'check_recent.inc',
  ),
  
  'addressbook' => array(
program/steps/mail/check_recent.inc
@@ -66,8 +66,8 @@
      }
    }
  }
  else if ($IMAP->messagecount($mbox_name, 'UNSEEN', $check_all)) {
    $OUTPUT->command('set_unread_count', $mbox_name, $IMAP->messagecount($mbox_name, 'UNSEEN', $check_all));
  else if ($unseen = $IMAP->messagecount($mbox_name, 'UNSEEN', $check_all)) {
    $OUTPUT->command('set_unread_count', $mbox_name, $unseen);
  }
}