diff options
author | Andrew Summers <18727110+summersab@users.noreply.github.com> | 2023-08-29 18:54:23 -0500 |
---|---|---|
committer | Andrew Summers <18727110+summersab@users.noreply.github.com> | 2023-08-29 21:33:17 -0500 |
commit | ce74bdcda244172cbe90dc792e30128802a78828 (patch) | |
tree | 21b797b1af233b8f0c1be8edec57cca8ff141f83 /lib/private/URLGenerator.php | |
parent | 9d1547f59d53b46ba401ddf0e7f4c6e4f067004e (diff) | |
download | nextcloud-server-ce74bdcda244172cbe90dc792e30128802a78828.tar.gz nextcloud-server-ce74bdcda244172cbe90dc792e30128802a78828.zip |
Refactor `OC\Server::getThemingDefaults`
Signed-off-by: Andrew Summers <18727110+summersab@users.noreply.github.com>
Diffstat (limited to 'lib/private/URLGenerator.php')
-rw-r--r-- | lib/private/URLGenerator.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/URLGenerator.php b/lib/private/URLGenerator.php index 3a52b99889c..187deb99150 100644 --- a/lib/private/URLGenerator.php +++ b/lib/private/URLGenerator.php @@ -217,7 +217,7 @@ class URLGenerator implements IURLGenerator { $themingEnabled = $this->config->getSystemValueBool('installed', false) && $this->getAppManager()->isEnabledForUser('theming'); $themingImagePath = false; if ($themingEnabled) { - $themingDefaults = \OC::$server->getThemingDefaults(); + $themingDefaults = \OC::$server->get('ThemingDefaults'); if ($themingDefaults instanceof ThemingDefaults) { $themingImagePath = $themingDefaults->replaceImagePath($appName, $file); } @@ -290,7 +290,7 @@ class URLGenerator implements IURLGenerator { * @return string url to the online documentation */ public function linkToDocs(string $key): string { - $theme = \OC::$server->getThemingDefaults(); + $theme = \OC::$server->get('ThemingDefaults'); return $theme->buildDocLinkToKey($key); } |