From: Michael Date: Sun, 13 Jan 2019 09:44:04 +0000 (+0000) Subject: Fixing some notice again X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=236c7718d35fea49282d17fef0640fd612ab7c74;p=friendica.git Fixing some notice again --- diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index b3b3f1c65c..4b4790c279 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -492,7 +492,7 @@ class OnePoll // If it seems to be a reply but a header couldn't be found take the last message with matching subject if (empty($datarray['parent-uri']) && $reply) { - $condition = ['title' => $datarray['title'], 'uid' => importer_uid, 'network' => Protocol::MAIL]; + $condition = ['title' => $datarray['title'], 'uid' => $importer_uid, 'network' => Protocol::MAIL]; $params = ['order' => ['created' => true]]; $parent = Item::selectFirst(['parent-uri'], $condition, $params); if (DBA::isResult($parent)) {