Make sure the Smartsearch Content plugin is disabled
Then go to
/administrator/index.php?option=com_finder&view=index
The message is repeated twice, and the first one is not a correct link.
It is /administrator/%s
instead of /administrator/index.php?option=com_plugins&task=plugin.edit&extension_id=441
Looked at history and could not find when this code was introduced.
see: https://github.com/joomla/joomla-cms/blob/3.7.x/administrator/components/com_finder/views/index/view.html.php#L87-L105
obviously, as the string needs a sprintf,
if (!$this->pluginState['plg_content_finder']->enabled)
{
JFactory::getApplication()->enqueueMessage(JText::_('COM_FINDER_INDEX_PLUGIN_CONTENT_NOT_ENABLED'), 'warning');
}
is wrong.
But, I do not understand why the same message would anyway be repeated twice...
Labels |
Added:
?
|
Category | ⇒ | Administration UI/UX |
Status | New | ⇒ | Confirmed |
can you make patch?
done
Status | Confirmed | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-09-30 19:45:15 |
Closed_By | ⇒ | zero-24 |
hmm i think it is a conflict with this: 379b513 and a later change. I would suggest to just remove the first check so we have the same code as in staging: https://github.com/joomla/joomla-cms/blob/staging/administrator/components/com_finder/views/index/view.html.php#L95-L103 (with the link included and sprintf)