git-svn-id: https://svn.typo3.org/TYPO3v4/Core/branches/TYPO3_4-5@10464
709f56b5-9817-0410-a4d7-
c38de5d9e867
+2011-02-14 Steffen Gebert <steffen.gebert@typo3.org>
+
+ * Fixed bug #17564: Red question marks in QuickEdit instead of icons (Thanks to Jürgen Ettmueller)
+
2011-02-14 Georg Ringer <typo3@ringerge.org>
* Fixed bug #16890: tcaTree in flexforms still breaks
*/
protected function getIconHtml($icon, $alt = '', $title = '') {
$iconArray = $this->getIcon($icon);
- if (is_file(t3lib_div::resolveBackPath(PATH_typo3 . $iconArray[0]))) {
+ if (is_file(t3lib_div::resolveBackPath(PATH_typo3 . PATH_typo3_mod . $iconArray[0]))) {
return '<img src="' . $iconArray[0] . '" alt="' . $alt . '" ' . ($title ? 'title="' . $title . '"' : '') . ' />';
} else {
return t3lib_iconWorks::getSpriteIcon($icon, array('alt'=> $alt, 'title'=> $title));