summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_storage.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-03-16 19:01:10 +0100
committerAleksander Machniak <alec@alec.pl>2013-03-16 19:01:10 +0100
commit6e8f2a7448d9bf5a87603b197816027f3dd4bb4c (patch)
treee254fde2637d7163da16d93954addaecc2cb6e40 /program/lib/Roundcube/rcube_storage.php
parentb6fa7d54b852df88de1fa1b36d6221b143e85835 (diff)
Notify about a new mail only if it's UNSEEN (#1388965)
Diffstat (limited to 'program/lib/Roundcube/rcube_storage.php')
-rw-r--r--program/lib/Roundcube/rcube_storage.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_storage.php b/program/lib/Roundcube/rcube_storage.php
index 8a36f1f9d..700d12ffb 100644
--- a/program/lib/Roundcube/rcube_storage.php
+++ b/program/lib/Roundcube/rcube_storage.php
@@ -807,13 +807,14 @@ abstract class rcube_storage
/**
- * Returns current status of a folder
+ * Returns current status of a folder (compared to the last time use)
*
* @param string $folder Folder name
+ * @param array $diff Difference data
*
* @return int Folder status
*/
- abstract function folder_status($folder = null);
+ abstract function folder_status($folder = null, &$diff = array());
/**