-
Notifications
You must be signed in to change notification settings - Fork 265
Description
Basic Information
As of #9015, index.php contains the following:
Lines 125 to 131 in aa69300
| $loader = require SMF\Config::$vendordir . '/autoload.php'; | |
| if (isset(SMF\Config::$modSettings['integrate_autoload'])) { | |
| foreach (explode(',', SMF\Config::$modSettings['integrate_autoload']) as $prefix => $dirname) { | |
| $loader->addPsr4($prefix, $dirname); | |
| } | |
| } |
However, SMF\Config::$modSettings will not be populated yet, so the contents of SMF\Config::$modSettings['integrate_autoload'] will never be processed.
Steps to reproduce
N/A
Expected result
No response
Actual result
No response
Version/Git revision
3.0 Alpha 4
Database Engine
All
Database Version
No response
PHP Version
No response
Logs
Additional Information
I didn't notice this until just after I approved and merged #9015.