]> git.mxchange.org Git - friendica.git/commitdiff
Some bugfixing.
authorMichael Vogel <icarus@dabo.de>
Thu, 11 Jun 2015 23:08:06 +0000 (01:08 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 11 Jun 2015 23:08:06 +0000 (01:08 +0200)
include/notifier.php

index 583c6eb9f69f5c75bf0c1f2465c3491606933556..ce04a139bb8b39dd8b97f11870457a10a948b389 100644 (file)
@@ -301,13 +301,13 @@ function notifier_run(&$argv, &$argc){
                                        $target_item['deny_cid'].$target_item['deny_gid']) == 0))
                                $push_notify = true;
 
-                       $thr_parent = q("SELECT `network` FROM `item` WHERE `uri` = '%s' AMD `uid` = %d",
+                       $thr_parent = q("SELECT `network` FROM `item` WHERE `uri` = '%s' AND `uid` = %d",
                                dbesc($target_item["thr-parent"]), intval($target_item["uid"]));
 
                        // If the thread parent is OStatus then do some magic to distribute the messages.
                        // We have not only to look at the parent, since it could be a Friendica thread.
-                       if (($thr_parent AND ($thr_parent['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) {
-                               logger('Parent is '.$parent['network'].'. Thread parent is '.$thr_parent['network'], LOGGER_DEBUG);
+                       if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) {
+                               logger('Parent is '.$parent['network'].'. Thread parent is '.$thr_parent[0]['network'], LOGGER_DEBUG);
 
                                $push_notify = true;