Bug #15573
closedmissing icons
0%
Description
savedoknew.gif
undo.gif
edit2.gif
add.gif
list.gif
(issue imported from #M2493)
Files
Updated by Martin Kutschker over 18 years ago
edit2.gif is not missing. An edit2.gif exists, but it's not used in all places. It's there in Web>list, but not for select fields (together with add.gif and list.gif). Perhaps a bug of the form rendering functions.
add.gif is missing, but what do you expect from this simple image?
Updated by Martin Kutschker over 18 years ago
Please approve the attached two missing icons.
Updated by Martin Kutschker over 18 years ago
I've found the problem to be in class.t3lib_tceforms.php:getIcon().
Make this change and you get the new icons:
} else {
// $selIconFile = $this->backPath.'gfx/'.$icon;
//$selIconInfo = @getimagesize(PATH_t3lib.'gfx/'.$icon);
$selIconFile = t3lib_iconWorks::skinImg($this->backPath,'gfx/'.$icon,'',1);
$selIconInfo = @getimagesize(PATH_typo3.$selIconFile);
}