Actions
Bug #19173
closedCan't call t3lib_div::makeInstance() for t3lib_basicFileFunctions and t3lib_extFileFunctions
Start date:
2008-07-31
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
File name and class name do not match (eg. 't3lib_bascifilefunc' vs 't3lib_basicFileFunction')
This is basically a double entry to issue #0004756, but the 'solution' to that is more than questionable. What's the point of having a wrapper for a function and encourage its use in documentation when you have to workaround it with the function it wraps up?
(issue imported from #M9087)
Updated by Ingo Renner over 16 years ago
You have simply to include the php file yourself:
require_once(PATH_t3lib.'class.t3lib_basicfilefunc.php');
Other than that this issue might be resolved by an __autoload() implementation
Actions