Skip to content

Commit

Permalink
Fix method call for tags in RSS generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck Hagenbuch committed Apr 3, 2017
1 parent 65324f8 commit 46a696f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jonah/delivery/rss.php
Expand Up @@ -25,7 +25,7 @@
);
if ($tag_id = Horde_Util::getFormData('tag_id')) {
$criteria['tags'] = $injector->getInstance('Jonah_Tagger')
->getTagNames(explode(':', $tag_id));
->getTags(explode(':', $tag_id));
}
if ($tag = Horde_Util::getFormData('tag')) {
$criteria['tags'] = explode(':', $tag);
Expand Down

0 comments on commit 46a696f

Please sign in to comment.