Bug #40146
closedTask #40095: Move core to namespaces
[rsaauth] Call to undefined method CommandUtility::getCommand()
100%
Description
While trying to log in into backend I'm getting:
Fatal error: Call to undefined method TYPO3\CMS\Core\Utility\CommandUtility::getCommand() in C:\xampp\htdocs\community46\typo3\sysext\rsaauth\Classes\Backend\CommandLineBackend.php on line 60
this line right now is:
$this->opensslPath = \TYPO3\CMS\Core\Utility\CommandUtility::getCommand('openssl');
before was:
$this->opensslPath = t3lib_exec::getCommand('openssl');
Class t3lib_exec is now mapped to \TYPO3\CMS\Core\Extension\ExtensionManager::extPath('core') . 'Classes/Utility/CommandUtility.php';
but the content of CommandUtility is completely different then the original t3lib_exec class
Updated by Tymoteusz Motylewski about 12 years ago
seems that both
t3lib_utility_Command and t3lib_exec are pointing to the same file now "Classes/Utility/CommandUtility.php"
Updated by Gerrit Code Review about 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/14056
Updated by Gerrit Code Review about 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/14056
Updated by Christian Kuhn about 12 years ago
The transfer to CommandUtility was planned, but not done. The patch takes care of that.
Updated by Tymoteusz Motylewski about 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset a657956b6c6795d07e07496906dd27fff33afc36.