diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-08-24 14:16:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-24 14:16:48 +0200 |
commit | 42ef33661f3dd5aee7b6ce0b0846b321273e3f45 (patch) | |
tree | 77fabc6ff2f535cdd892f7a0b4000544bc063da6 | |
parent | b124647e32f52cf168a4912c0f416c17724dd670 (diff) | |
parent | 60974de97b8fd0b89f7660c78f82ee071c9e65ea (diff) | |
download | nextcloud-server-42ef33661f3dd5aee7b6ce0b0846b321273e3f45.tar.gz nextcloud-server-42ef33661f3dd5aee7b6ce0b0846b321273e3f45.zip |
Merge pull request #1033 from nextcloud/fix_theming_autoloader_magic
Fix theming autoloader magic
-rw-r--r-- | apps/theming/lib/Settings/Admin.php | 5 | ||||
-rw-r--r-- | lib/private/Server.php | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/apps/theming/lib/Settings/Admin.php b/apps/theming/lib/Settings/Admin.php index d0a9f554084..1f79449e658 100644 --- a/apps/theming/lib/Settings/Admin.php +++ b/apps/theming/lib/Settings/Admin.php @@ -29,21 +29,20 @@ use OCP\IConfig; use OCP\IL10N; use OCP\IURLGenerator; use OCP\Settings\ISettings; -use \OC_Defaults; class Admin implements ISettings { /** @var IConfig */ private $config; /** @var IL10N */ private $l; - /** @var ThemingDefaults|OC_Defaults */ + /** @var ThemingDefaults */ private $themingDefaults; /** @var IURLGenerator */ private $urlGenerator; public function __construct(IConfig $config, IL10N $l, - OC_Defaults $themingDefaults, + ThemingDefaults $themingDefaults, IURLGenerator $urlGenerator) { $this->config = $config; $this->l = $l; diff --git a/lib/private/Server.php b/lib/private/Server.php index 86eee54be70..b651285e9a5 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -643,10 +643,16 @@ class Server extends ServerContainer implements IServerContainer { return $factory->getManager(); }); $this->registerService('ThemingDefaults', function(Server $c) { - try { - $classExists = class_exists('OCA\Theming\ThemingDefaults'); - } catch (\OCP\AutoloadNotAllowedException $e) { - // App disabled or in maintenance mode + /* + * 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 { $classExists = false; } |