Respect diacritics when looking up tag, actor, .. IDs
This commit is contained in:
@ -12,7 +12,17 @@ declare(strict_types = 1);
|
||||
|
||||
// Try using class map as defined through /scripts/buildClassMap.php
|
||||
|
||||
foreach (array_merge([__DIR__ . '/../tests', __DIR__ . '/../src', __DIR__ . '/../src/enums', __DIR__ . '/../../MD_STD/src', __DIR__ . '/../../MDErrorReporter', __DIR__ . '/../../MDErrorReporter/exceptions', __DIR__ . '/../../MDErrorReporter/exceptions/generic', __DIR__ . '/../../MDErrorReporter/exceptions/updates']) as $classDir) {
|
||||
foreach (array_merge([__DIR__ . '/../tests',
|
||||
__DIR__ . '/../src',
|
||||
__DIR__ . '/../src/enums',
|
||||
__DIR__ . '/../../MD_STD/src',
|
||||
__DIR__ . '/../../MDErrorReporter',
|
||||
__DIR__ . '/../../MDErrorReporter/exceptions',
|
||||
__DIR__ . '/../../MDErrorReporter/exceptions/generic',
|
||||
__DIR__ . '/../../MDErrorReporter/exceptions/updates',
|
||||
__DIR__ . '/../../MDMysqli/src',
|
||||
__DIR__ . '/../../MDMysqli/exceptions',
|
||||
]) as $classDir) {
|
||||
|
||||
if (\file_exists("$classDir/$className.php")) {
|
||||
include "$classDir/$className.php";
|
||||
|
Reference in New Issue
Block a user