Merge pull request #6226 from n9iels/patch-tooltip-html

remove html escaping for edit-tooltip
This commit is contained in:
Viktor Vogel 2015-02-28 16:53:33 +01:00
commit aeedea85ea
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ abstract class JHtmlIcon
$icon = 'eye-close';
}
$text = '<span class="hasTooltip icon-' . $icon . ' tip" title="' . JHtml::tooltipText(JText::_('COM_CONTENT_EDIT_ITEM'), $overlib, 0)
$text = '<span class="hasTooltip icon-' . $icon . ' tip" title="' . JHtml::tooltipText(JText::_('COM_CONTENT_EDIT_ITEM'), $overlib, 0, 0)
. '"></span>'
. JText::_('JGLOBAL_EDIT');
}