diff options
author | friendica <info@friendica.com> | 2012-04-14 04:19:41 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-14 04:19:41 -0700 |
commit | 9dd0ef2aeb5fba611042b89ba59236ca23ded965 (patch) | |
tree | fedf3ab6539eed25bd4401bc2018a140b27a9e2c /include | |
parent | 0d869ceb65badbd4d80dd0d5cf2d631bca7f5b9e (diff) | |
download | volse-hubzilla-9dd0ef2aeb5fba611042b89ba59236ca23ded965.tar.gz volse-hubzilla-9dd0ef2aeb5fba611042b89ba59236ca23ded965.tar.bz2 volse-hubzilla-9dd0ef2aeb5fba611042b89ba59236ca23ded965.zip |
bug #372 - category feeds
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 05c0d5016..85df340d3 100644 --- a/include/items.php +++ b/include/items.php @@ -19,9 +19,15 @@ function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) $converse = true; if($a->argv[$x] == 'starred') $starred = true; + if($a->argv[$x] === 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) + $category = $a->argv[$x+1]; } + + } + + // default permissions - anonymous user $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' "; @@ -101,6 +107,10 @@ function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) if(! strlen($last_update)) $last_update = 'now -30 days'; + if(x($category)) { + $sql_extra .= file_tag_file_query('item',$category,'category'); + } + if($public_feed) { if(! $converse) $sql_extra .= " AND `contact`.`self` = 1 "; |