aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index 5947e4912..3154ae5d5 100755
--- a/include/items.php
+++ b/include/items.php
@@ -773,6 +773,12 @@ function encode_mail($item) {
$x['from'] = encode_item_xchan($item['from']);
$x['to'] = encode_item_xchan($item['to']);
+ if($item['mail_flags'] & MAIL_RECALLED) {
+ $x['flags'] = 'recalled';
+ $x['title'] = '';
+ $x['body'] = '';
+ }
+
return $x;
}
@@ -786,6 +792,15 @@ function get_mail_elements($x) {
$arr['created'] = datetime_convert('UTC','UTC',$x['created']);
+ $arr['mail_flags'] = 0;
+
+ if($x['flags'] && is_array($x['flags'])) {
+ if(in_array('recalled',$x['flags'])) {
+ $arr['mail_flags'] &= MAIL_RECALLED;
+ }
+ }
+
+
if($arr['created'] > datetime_convert())
$arr['created'] = datetime_convert();