Use the funcion JHelperTags::searchTags() in component whithout param.
Function to search tags
Notice: Undefined index: published in C:\wamp\www\joomla\libraries\cms\helper\tags.php on line 888
Joomla! 3.3.6 Stable [ Ember ] 01-October-2014 02:00 GMT
Fix: Change line 888:
if (is_numeric($filters['published']))
to
if ( isset($filters['published']) && is_numeric($filters['published']) )
@vzenix it is this line in staging https://github.com/joomla/joomla-cms/blob/staging/libraries/cms/helper/tags.php#L921
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-01-15 09:07:35 |
Labels |
Added:
?
|
@vzenix can you submit your fix as pull request?
If you need help see here: https://docs.joomla.org/Using_the_Github_UI_to_Make_Pull_Requests
Thanks.