From d709225b6832175a98a479ca550e6028e6eb5bd9 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 5 Oct 2011 13:11:45 -0700 Subject: [PATCH] better check for orig post author --- boot.php | 2 +- mod/dfrn_notify.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 65a1b8229d..c9603f7874 100644 --- a/boot.php +++ b/boot.php @@ -8,7 +8,7 @@ require_once("include/pgettext.php"); require_once('include/nav.php'); define ( 'FRIENDIKA_PLATFORM', 'Free Friendika'); -define ( 'FRIENDIKA_VERSION', '2.3.1124' ); +define ( 'FRIENDIKA_VERSION', '2.3.1125' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1094 ); diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 9e98099506..07de641604 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -453,7 +453,7 @@ function dfrn_notify_post(&$a) { // was the top-level post for this reply written by somebody on this site? Specifically, the recipient? - $r = q("select `id` from `item` where `uri` = '%s' AND `uid` = %d LIMIT 1", + $r = q("select `item`.`id` from `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` where `contact`.`self` = 1 AND `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1", dbesc($parent_uri), intval($importer['importer_uid']) );