Index: typo3/sysext/impexp/class.tx_impexp_clickmenu.php =================================================================== --- typo3/sysext/impexp/class.tx_impexp_clickmenu.php (Revision 7766) +++ typo3/sysext/impexp/class.tx_impexp_clickmenu.php (Arbeitskopie) @@ -96,7 +96,7 @@ } $localItems[] = $backRef->linkItem( $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLLL('export',$LL)), - $backRef->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-export')), + $backRef->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-export-t3d')), $backRef->urlRefForCM($url), 1 // Disables the item in the top-bar ); @@ -105,7 +105,7 @@ $url = $modUrl . '?id='. $uid . '&table=' . $table . '&tx_impexp[action]=import'; $localItems[] = $backRef->linkItem( $GLOBALS['LANG']->makeEntities($GLOBALS['LANG']->getLLL('import',$LL)), - $backRef->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-export')), + $backRef->excludeIcon(t3lib_iconWorks::getSpriteIcon('actions-document-export-t3d')), $backRef->urlRefForCM($url), 1 // Disables the item in the top-bar ); Index: t3lib/class.t3lib_tsparser_ext.php =================================================================== --- t3lib/class.t3lib_tsparser_ext.php (Revision 7766) +++ t3lib/class.t3lib_tsparser_ext.php (Arbeitskopie) @@ -599,9 +599,10 @@ $alttext = '[' . $row['templateID'] . ']'; $alttext .= $row['pid'] ? ' - ' . t3lib_BEfunc::getRecordPath($row['pid'], $GLOBALS['SOBE']->perms_clause, 20) : ''; - $icon = substr($row['templateID'],0,3) == 'sys' ? t3lib_iconWorks::getSpriteIconForRecord('sys_template', $row['root'],array('title'=>$alttext)) : - (substr($row['templateID'], 0, 6) == 'static' ? t3lib_iconWorks::getSpriteIconForRecord('static_template', array(),array('title'=>$alttext)) : - t3lib_iconWorks::getSpriteIcon('mimetypes-default',array('title'=>$alttext))); + $icon = (substr($row['templateID'],0,3) == 'sys' ? + t3lib_iconWorks::getSpriteIconForRecord('sys_template', $row['root'], array('title' => $alttext)) + : t3lib_iconWorks::getSpriteIcon('mimetypes-x-content-template-static', array('title' => $alttext)) + ); if (in_array($row['templateID'], $this->clearList_const) || in_array($row['templateID'], $this->clearList_setup)) { $A_B = ''; $A_E = '';