]> git.mxchange.org Git - friendica.git/commitdiff
Fix for fetching false fer... (sorry) verbs
authorMichael <heluecht@pirati.ca>
Wed, 27 Jun 2018 20:25:24 +0000 (20:25 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 27 Jun 2018 20:25:24 +0000 (20:25 +0000)
src/Model/Item.php

index 2dac079b6fd7126e89d8f17b5ddfbefbd6923563..9fafe26aa670585e6f35f037a84c8a1b1156d4c8 100644 (file)
@@ -86,7 +86,7 @@ class Item extends BaseObject
 
                // Fetch data from the item-content table whenever there is content there
                foreach (self::CONTENT_FIELDLIST as $field) {
-                       if (is_null($row[$field]) && !is_null($row['item-' . $field])) {
+                       if (empty($row[$field]) && !empty($row['item-' . $field])) {
                                $row[$field] = $row['item-' . $field];
                        }
                        unset($row['item-' . $field]);
@@ -403,7 +403,7 @@ class Item extends BaseObject
                        'file', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
                        'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
                        'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global',
-                       'id' => 'item_id', 'network'];
+                       'id' => 'item_id', 'network', 'icid'];
 
                $fields['item-content'] = self::CONTENT_FIELDLIST;