diff options
author | friendica <info@friendica.com> | 2013-09-07 00:48:18 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-07 00:48:18 -0700 |
commit | 04a4e4962d03d9ca4cc8503bb05ee94b0acc1a5f (patch) | |
tree | ddf22628ab69b094febe81d23734ebadf3a6ce62 /mod | |
parent | d194ee091af0ee15c7f63def7e8c07ee29e38f39 (diff) | |
parent | ba980e2c1f3d673ab07e6c3ac1c3657294f95708 (diff) | |
download | volse-hubzilla-04a4e4962d03d9ca4cc8503bb05ee94b0acc1a5f.tar.gz volse-hubzilla-04a4e4962d03d9ca4cc8503bb05ee94b0acc1a5f.tar.bz2 volse-hubzilla-04a4e4962d03d9ca4cc8503bb05ee94b0acc1a5f.zip |
Merge pull request #116 from unary/categorysearch
Thanks Michael!
issue #115 - filter by category fix
Diffstat (limited to 'mod')
-rw-r--r-- | mod/channel.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/channel.php b/mod/channel.php index aa158d330..5d3855269 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -90,6 +90,8 @@ function channel_content(&$a, $update = 0, $load = false) { require_once('include/permissions.php'); + $category = ((x($_REQUEST,'cat')) ? $_REQUEST['cat'] : ''); + $groups = array(); $o = ''; @@ -171,8 +173,9 @@ function channel_content(&$a, $update = 0, $load = false) { } else { + if(x($category)) { - $sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category')); + $sql_extra .= protect_sprintf(term_query('item', $category, TERM_CATEGORY)); } if($datequery) { |