]> git.mxchange.org Git - friendica.git/commitdiff
Store the event when a summary or a description is set
authorMichael Vogel <icarus@dabo.de>
Fri, 16 Oct 2015 22:58:22 +0000 (00:58 +0200)
committerMichael Vogel <icarus@dabo.de>
Fri, 16 Oct 2015 22:58:22 +0000 (00:58 +0200)
include/items.php

index c14fcdcc998642430fd21ed32531281502c27454..795001bec68f497f2b1526013fd6aa4836ab8954 100644 (file)
@@ -2849,7 +2849,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
 
                                if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
                                        $ev = bbtoevent($datarray['body']);
-                                       if(x($ev,'desc') && x($ev,'start')) {
+                                       if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) {
                                                $ev['uid'] = $importer['uid'];
                                                $ev['uri'] = $item_id;
                                                $ev['edited'] = $datarray['edited'];
@@ -4074,7 +4074,7 @@ function local_delivery($importer,$data) {
 
                        if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
                                $ev = bbtoevent($datarray['body']);
-                               if(x($ev,'desc') && x($ev,'start')) {
+                               if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) {
                                        $ev['cid'] = $importer['id'];
                                        $ev['uid'] = $importer['uid'];
                                        $ev['uri'] = $item_id;