summaryrefslogtreecommitdiff
path: root/program/include/rcube_storage.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-10-11 10:17:12 +0200
committerAleksander Machniak <alec@alec.pl>2012-10-11 10:17:12 +0200
commit7ac533dedea5bae31baa2eb6450cc0eb8c1b0090 (patch)
tree7be771aae3a0e8c86226b506d1d47938adec5d64 /program/include/rcube_storage.php
parent00891e687b97b6eac7317970aeb0d49826d05d42 (diff)
Add flags and date arguments to kolab_storage::save_message()
Diffstat (limited to 'program/include/rcube_storage.php')
-rw-r--r--program/include/rcube_storage.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/rcube_storage.php b/program/include/rcube_storage.php
index f83e24041..933ebcc25 100644
--- a/program/include/rcube_storage.php
+++ b/program/include/rcube_storage.php
@@ -545,10 +545,12 @@ abstract class rcube_storage
* @param string $message The message source string or filename
* @param string $headers Headers string if $message contains only the body
* @param boolean $is_file True if $message is a filename
+ * @param array $flags Message flags
+ * @param mixed $date Message internal date
*
* @return int|bool Appended message UID or True on success, False on error
*/
- abstract function save_message($folder, &$message, $headers = '', $is_file = false);
+ abstract function save_message($folder, &$message, $headers = '', $is_file = false, $flags = array(), $date = null);
/**