diff options
author | Friendika <info@friendika.com> | 2011-02-12 22:29:32 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-12 22:29:32 -0800 |
commit | 2d542e0f982598b792da6fbdf9cd7b29c2a04c83 (patch) | |
tree | 6343fefb0c1d6714ca70e06e0af61a713d130532 /mod/dfrn_notify.php | |
parent | 91190de0f0ae7961c99baffa460fde89cf963abb (diff) | |
download | volse-hubzilla-2d542e0f982598b792da6fbdf9cd7b29c2a04c83.tar.gz volse-hubzilla-2d542e0f982598b792da6fbdf9cd7b29c2a04c83.tar.bz2 volse-hubzilla-2d542e0f982598b792da6fbdf9cd7b29c2a04c83.zip |
receiving comment notifications for conversations we aren't "involved" in
Diffstat (limited to 'mod/dfrn_notify.php')
-rw-r--r-- | mod/dfrn_notify.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index dffbb5974..755d674c1 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -391,8 +391,9 @@ function dfrn_notify_post(&$a) { intval($importer['importer_uid']) ); if(count($myconv)) { + $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname']; foreach($myconv as $conv) { - if(! link_compare($conv['author-link'],$importer['url'])) + if(! link_compare($conv['author-link'],$importer_url)) continue; require_once('bbcode.php'); $from = stripslashes($datarray['author-name']); |