Actions
Bug #23958
closedPoor solution for t3lib_div::makeInstance() for t3lib_basicFileFunctions and t3lib_extFileFunctions
Start date:
2010-11-05
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
File name and class name do not match (eg. 't3lib_bascifilefunc' vs 't3lib_basicFileFunctions') and t3lib_extFileFunctions vs t3lib_extFileFunction.
The solution for it is always :
just include
require_once(PATH_t3lib.'class.t3lib_basicfilefunc.php'); or
require_once(PATH_t3lib.'class.t3lib_extFileFunction.php');
This solution ends up in returning bug reports
ISSUES:
0004756
0009087
(issue imported from #M16269)
Updated by Steffen Gebert about 14 years ago
Is this really still an issue in 4.3/4.4? The autoloader should load the file for you automatically.
Updated by Johannes Hahn about 14 years ago
sorry for that issue,
but i have to include always that files for backward compatibility for lower typo3 versions than 4.3. so i have no benefit to autoloader.
i think we can close that.
Actions