From 597838be34395d5d9dad720e84816192f36c91bf Mon Sep 17 00:00:00 2001 From: Oliver Hader <oliver@typo3.org> Date: Thu, 30 Aug 2012 20:12:18 +0200 Subject: [PATCH] [BUGFIX] Install process fails on case-insensitive file systems The install process fails on case-insensitive file systems like HFS+ on Mac OS X. The reason is that "classes" and "Classes" are the same in that regard, which will load the old saltedpasswords autoloader. Since the extension is not enabled in the install process, this will fail of course. Change-Id: Ic4e9a7d4149faeb5b68ae238101d27a10c5d5f7e Fixes: #40438 Releases: 6.0 Reviewed-on: http://review.typo3.org/14228 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Oliver Hader Tested-by: Oliver Hader --- .../Classes/class.tx_saltedpasswords_autoloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/saltedpasswords/Classes/class.tx_saltedpasswords_autoloader.php b/typo3/sysext/saltedpasswords/Classes/class.tx_saltedpasswords_autoloader.php index 82eee8085f5a..341f320cd3eb 100644 --- a/typo3/sysext/saltedpasswords/Classes/class.tx_saltedpasswords_autoloader.php +++ b/typo3/sysext/saltedpasswords/Classes/class.tx_saltedpasswords_autoloader.php @@ -4,7 +4,7 @@ * and will be removed by 7.0. The class was renamed and is now located at: * typo3/sysext/saltedpasswords/Classes/Autoloader.php */ -require_once \TYPO3\CMS\Core\Extension\ExtensionManager::extPath('saltedpasswords') . 'Classes/Autoloader.php'; +require_once PATH_site . 'typo3/sysext/saltedpasswords/Classes/Autoloader.php'; /** * @var $SOBE \TYPO3\CMS\Saltedpasswords\Autoloader */ -- GitLab