+2009-05-28 Jeff Segars <jeff@webempoweredchurch.org>
+
+ * Fixed bug #10744: Icon path calculated incorrectly in t3lib_tceforms->getIcon()
+
2009-05-28 Steffen Kamper <info@sk-typo3.de>
* Added feature #11207 Hook in typo3/class.webPageTree.php -> wrapTitle
$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);
}