aboutsummaryrefslogtreecommitdiffstats
path: root/include/api_zot.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2018-09-27 23:58:49 +0200
committerMax Kostikov <max@kostikov.co>2018-09-27 23:58:49 +0200
commitffe80c66d7da1e80525dfa9448d260f8dcdea04a (patch)
treedcdc84c30962ef11b53dfde8fcf50180d4ae43bc /include/api_zot.php
parentbfa672f42cd4aa01d1112f556a3eb35a6789048c (diff)
downloadvolse-hubzilla-ffe80c66d7da1e80525dfa9448d260f8dcdea04a.tar.gz
volse-hubzilla-ffe80c66d7da1e80525dfa9448d260f8dcdea04a.tar.bz2
volse-hubzilla-ffe80c66d7da1e80525dfa9448d260f8dcdea04a.zip
Update api_zot.php
Diffstat (limited to 'include/api_zot.php')
-rw-r--r--include/api_zot.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/api_zot.php b/include/api_zot.php
index 921242152..6a5b9a268 100644
--- a/include/api_zot.php
+++ b/include/api_zot.php
@@ -350,20 +350,20 @@
$r = null;
if($_REQUEST['group_id']) {
- $r = q("select * from groups where uid = %d and id = %d limit 1",
+ $r = q("select * from pgrp where uid = %d and id = %d limit 1",
intval(api_user()),
intval($_REQUEST['group_id'])
);
}
elseif($_REQUEST['group_name']) {
- $r = q("select * from groups where uid = %d and gname = '%s' limit 1",
+ $r = q("select * from pgrp where uid = %d and gname = '%s' limit 1",
intval(api_user()),
dbesc($_REQUEST['group_name'])
);
}
if($r) {
- $x = q("select * from group_member left join abook on abook_xchan = xchan and abook_channel = group_member.uid left join xchan on group_member.xchan = xchan.xchan_hash
+ $x = q("select * from pgrp_member left join abook on abook_xchan = xchan and abook_channel = pgrp_member.uid left join xchan on pgrp_member.xchan = xchan.xchan_hash
where gid = %d",
intval($r[0]['id'])
);
@@ -376,7 +376,7 @@
if(api_user() === false)
return false;
- $r = q("select * from groups where uid = %d",
+ $r = q("select * from pgrp where uid = %d",
intval(api_user())
);
json_return_and_die($r);