Skip to content

Commit

Permalink
# [#30333] *TAGS: Notice when entering 2 tags in a tags menu item.
Browse files Browse the repository at this point in the history
Thanks Roberto
  • Loading branch information
phproberto authored and infograf768 committed Mar 20, 2013
1 parent 1a62a21 commit 55d176f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions installation/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ $ -> Language fix or change
- -> Removed
! -> Note

20-Mar-2013 Jean-Marie Simonet
# [#30333] *TAGS: Notice when entering 2 tags in a tags menu item. Thanks Roberto

19-Mar-2013 Jean-Marie Simonet
$ Missing strings in com_tags frontend

Expand Down
6 changes: 3 additions & 3 deletions libraries/cms/tags/tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,16 +432,16 @@ public function getItemTags($contentType, $id, $getTagData = true)
* @param mixed $tagId Tag or array of tags to be matched
* @param mixed $typesr Null, type or array of type aliases for content types to be included in the results
* @param boolean $includeChildren True to include the results from child tags
* @param boolean $matchAll True to include items matching all tags in the array, false to include
* items that match at least one tag.
* @param boolean $anyOrAll True to include items matching at least one tag, false to include
* items all tags in the array.
* @param string $languageFilter Optional filter on language. Options are 'all', 'current' or any string.
*
* @return JDatabaseQuery Query to retrieve a list of tags
*
* @since 3.1
*/
public function getTagItemsQuery($tagId, $typesr = null, $includeChildren = false, $orderByOption = 'title', $orderDir = 'ASC',
$matchAll = true, $languageFilter = 'all')
$anyOrAll = true, $languageFilter = 'all')
{
// Create a new query object.
$db = JFactory::getDbo();
Expand Down

0 comments on commit 55d176f

Please sign in to comment.