Index: typo3/sysext/cms/tslib/class.tslib_pagegen.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_pagegen.php (revision 6003) +++ typo3/sysext/cms/tslib/class.tslib_pagegen.php (working copy) @@ -482,16 +482,16 @@ } if ($GLOBALS['TSFE']->pSetup['shortcutIcon']) { - $favIcon = t3lib_div::getIndpEnv('TYPO3_SITE_URL') . $GLOBALS['TSFE']->tmpl->getFileName($GLOBALS['TSFE']->pSetup['shortcutIcon']); + $favIcon = $GLOBALS['TSFE']->tmpl->getFileName($GLOBALS['TSFE']->pSetup['shortcutIcon']); $iconMimeType = ''; if (function_exists('finfo_open')) { if (($finfo = @finfo_open(FILEINFO_MIME))) { - $iconMimeType = ' type="' . finfo_file($finfo, $favIcon) . '"'; + $iconMimeType = ' type="' . finfo_file($finfo, PATH_site . $favIcon) . '"'; finfo_close($finfo); $pageRenderer->setIconMimeType($iconMimeType); } } - $pageRenderer->setFavIcon($favIcon); + $pageRenderer->setFavIcon(t3lib_div::getIndpEnv('TYPO3_SITE_URL') . $favIcon); } @@ -1142,4 +1142,4 @@ var $fromTC = 0; // Means that everything is returned instead of only uid and label-field } -?> \ No newline at end of file +?>