Index: t3lib/class.t3lib_tceforms.php =================================================================== --- t3lib/class.t3lib_tceforms.php (revision 5210) +++ t3lib/class.t3lib_tceforms.php (working copy) @@ -3894,7 +3894,8 @@ $selIconInfo = @getimagesize(PATH_typo3.$icon); } else { $selIconFile = t3lib_iconWorks::skinImg($this->backPath,'gfx/'.$icon,'',1); - $selIconInfo = @getimagesize(PATH_typo3.$selIconFile); + $iconPath = substr($selIconFile, strlen($this->backPath)); + $selIconInfo = @getimagesize(PATH_typo3 . $iconPath); } return array($selIconFile,$selIconInfo); }