aboutsummaryrefslogtreecommitdiffstats
path: root/include/api.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-19 18:57:12 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-19 18:57:12 -0700
commitf315c55d32e5db0d3e6219bee1da7c7cbd5e217b (patch)
treeec73970a61d210b1d1f8eaa56844235c4d493834 /include/api.php
parent185ce2da69836a66644bfab4941eba82af19f651 (diff)
downloadvolse-hubzilla-f315c55d32e5db0d3e6219bee1da7c7cbd5e217b.tar.gz
volse-hubzilla-f315c55d32e5db0d3e6219bee1da7c7cbd5e217b.tar.bz2
volse-hubzilla-f315c55d32e5db0d3e6219bee1da7c7cbd5e217b.zip
api performance enhancer
Diffstat (limited to 'include/api.php')
-rw-r--r--include/api.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/api.php b/include/api.php
index 5347d498d..e96ebe2fb 100644
--- a/include/api.php
+++ b/include/api.php
@@ -824,7 +824,6 @@ require_once('include/items.php');
and author_xchan = '%s'
and allow_cid = '' and allow_gid = '' and deny_cid = '' and deny_gid = ''
and verb = '%s'
- and uid in ( " . stream_perms_api_uids() . " )
order by created desc limit 1",
dbesc($xchan_hash),
dbesc(ACTIVITY_POST)
@@ -889,7 +888,6 @@ require_once('include/items.php');
and author_xchan = '%s'
and allow_cid = '' and allow_gid = '' and deny_cid = '' and deny_gid = ''
and verb = '%s'
- and uid in ( " . stream_perms_api_uids() . " )
order by created desc limit 1",
dbesc($user_info['guid']),
dbesc(ACTIVITY_POST)
@@ -963,7 +961,6 @@ require_once('include/items.php');
and author_xchan = '%s'
and allow_cid = '' and allow_gid = '' and deny_cid = '' and deny_gid = ''
and verb = '%s'
- and uid in ( " . stream_perms_api_uids() . " )
order by created desc limit 1",
dbesc($user_info['guid']),
dbesc(ACTIVITY_POST)
@@ -1109,8 +1106,8 @@ require_once('include/items.php');
if (api_user()===false) return false;
$user_info = api_get_user($a);
- // get last newtork messages
+ $sys = get_sys_channel();
// params
$count = (x($_REQUEST,'count')?$_REQUEST['count']:20);
@@ -1132,7 +1129,7 @@ require_once('include/items.php');
and allow_cid = '' and allow_gid = ''
and deny_cid = '' and deny_gid = ''
and item_private = 0
- and uid in ( " . stream_perms_api_uids() . " )
+ and uid = " . $sys['channel_id'] . "
$sql_extra
AND id > %d group by mid
order by received desc LIMIT %d OFFSET %d ",