Bug #15700
closedWrong hardcoded path to fileicons in class.tslib_content.php
0%
Description
I just tested 4.0 beta3 and noticed that the fileicons where missing in the content-elements "uploads". The hardcoded path in "sysext/cms/tslib/class.tslib_content.php" on line 3843 is wrong.
Wrong:
$iconP = t3lib_extMgm::siteRelPath('cms').'media/fileicons/';
Correct:
$iconP = t3lib_extMgm::siteRelPath('cms').'tslib/media/fileicons/';
At least works for me on windows, zip-package. Couldn't check the linux-package, but as it should be the same now (no symlinks) the bug should be there, too.
but as this should become customizable anyway, maybe this bug will become obsolete
featurerequest for customizable icon-path see bug 1378:
http://bugs.typo3.org/view.php?id=1378
(issue imported from #M2667)
Updated by Karsten Dambekalns over 18 years ago
The code is like suggested, so it should work.