Actions
Bug #14693
closedCLI-API script cannot init - BEUser not found
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2005-04-20
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.7.0
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
A script using CLI-API can't find its BE-User due to a bug in t3lib/class.t3lib_beuserauth.php.
Buggy code:
function setBeUserByName($name) {
$this->user = $this->getRawUserByName($uid);
}
Fixed code:
function setBeUserByName($name) {
$this->user = $this->getRawUserByName($name);
}
(issue imported from #M1008)
Updated by Ingmar Schlecht over 19 years ago
This has already been fixed in 3.8 (at least I know it's working properly there and the buggy code isn't in there).
Please try with latest 3.8beta2.1!
Actions