only show categories this channel has used

This commit is contained in:
Michael Johnston 2013-09-08 13:55:37 -04:00
parent fe5f470c62
commit a1b3a72f9e

View File

@ -76,9 +76,16 @@ function categories_widget($baseurl,$selected = '') {
return '';
$terms = array();
$r = q("select distinct(term) from term where uid = %d and type = %d order by term asc",
$r = q("select distinct(term.term)
from term join item on term.oid = item.id
where item.uid = %d
and term.uid = item.uid
and term.type = %d
and item.author_xchan = '%s'
order by term.term asc",
intval($a->profile['profile_uid']),
intval(TERM_CATEGORY)
intval(TERM_CATEGORY),
$a->profile['channel_hash']
);
if($r && count($r)) {
foreach($r as $rr)