Skip to content
Snippets Groups Projects
Commit 597838be authored by Oliver Hader's avatar Oliver Hader Committed by Oliver Hader
Browse files

[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
parent 810f1eb5
Branches
Tags
No related merge requests found
......@@ -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
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment