aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-06-20 15:55:20 -0700
committerfriendica <info@friendica.com>2013-06-20 15:55:20 -0700
commit95d7514633e806984c1589e2ac4165c9dc5e5435 (patch)
treeb7e32fe218be56c664d09f2a9f7dac617db06d67 /include/text.php
parent3dcf9a1df76af69818701811edaef7eea572d7cb (diff)
downloadvolse-hubzilla-95d7514633e806984c1589e2ac4165c9dc5e5435.tar.gz
volse-hubzilla-95d7514633e806984c1589e2ac4165c9dc5e5435.tar.bz2
volse-hubzilla-95d7514633e806984c1589e2ac4165c9dc5e5435.zip
undefined activity_compare which broke notifications (should be activity_match) and revamp xchan_query as abook is optional and need not be present - if it isn't there we still need the xchan, but if it is there we need to make sure that it belongs to whichever channel owns the post
Diffstat (limited to 'include/text.php')
-rwxr-xr-xinclude/text.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php
index d36475484..afe2490e7 100755
--- a/include/text.php
+++ b/include/text.php
@@ -1440,7 +1440,7 @@ function item_post_type($item) {
break;
}
- if(strlen($item['verb']) && (! activity_compare($item['verb'],ACTIVITY_POST)))
+ if(strlen($item['verb']) && (! activity_match($item['verb'],ACTIVITY_POST)))
$post_type = t('activity');
return $post_type;
@@ -1556,8 +1556,8 @@ function xchan_query(&$items,$abook = true) {
}
if(count($arr)) {
if($abook) {
- $chans = q("select * from xchan left join hubloc on hubloc_hash = xchan_hash left join abook on abook_xchan = xchan_hash
- where abook_channel = %d and xchan_hash in (" . implode(',', $arr) . ") and ( hubloc_flags & " . intval(HUBLOC_FLAGS_PRIMARY) . " )",
+ $chans = q("select * from xchan left join hubloc on hubloc_hash = xchan_hash left join abook on abook_xchan = xchan_hash and abook_channel = %d
+ where xchan_hash in (" . implode(',', $arr) . ") and ( hubloc_flags & " . intval(HUBLOC_FLAGS_PRIMARY) . " )",
intval($item['uid'])
);
}