Browse Source

Revert "Dark autoloader magic for ThemingDefaults"

This reverts commit 4e1d501696.
tags/v27.0.0beta1
Christoph Wurst 1 year ago
parent
commit
44dc839f7b
No account linked to committer's email address
1 changed files with 4 additions and 10 deletions
  1. 4
    10
      lib/private/Server.php

+ 4
- 10
lib/private/Server.php View File

@@ -1199,16 +1199,10 @@ class Server extends ServerContainer implements IServerContainer {

$this->registerAlias(\OC_Defaults::class, 'ThemingDefaults');
$this->registerService('ThemingDefaults', function (Server $c) {
/*
* Dark magic for autoloader.
* If we do a class_exists it will try to load the class which will
* make composer cache the result. Resulting in errors when enabling
* the theming app.
*/
$prefixes = \OC::$composerAutoloader->getPrefixesPsr4();
if (isset($prefixes['OCA\\Theming\\'])) {
$classExists = true;
} else {
try {
$classExists = class_exists('OCA\Theming\ThemingDefaults');
} catch (\OCP\AutoloadNotAllowedException $e) {
// App disabled or in maintenance mode
$classExists = false;
}


Loading…
Cancel
Save