diff options
author | Friendika <info@friendika.com> | 2011-10-05 13:11:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-05 13:11:45 -0700 |
commit | d709225b6832175a98a479ca550e6028e6eb5bd9 (patch) | |
tree | a329fa73589cc85638b779be3f1faa9c04a98cd4 /mod | |
parent | 924d4193789217dadbddf8e0dddb960a2988136c (diff) | |
download | volse-hubzilla-d709225b6832175a98a479ca550e6028e6eb5bd9.tar.gz volse-hubzilla-d709225b6832175a98a479ca550e6028e6eb5bd9.tar.bz2 volse-hubzilla-d709225b6832175a98a479ca550e6028e6eb5bd9.zip |
better check for orig post author
Diffstat (limited to 'mod')
-rw-r--r-- | mod/dfrn_notify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 9e9809950..07de64160 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']) ); |