Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-05-19 22:56:11 +0300
committerGitHub <noreply@github.com>2017-05-19 22:56:11 +0300
commitebd15f50d9cad47d924cc9b27211350bbaa4fb0e (patch)
treeb2fa05c24f93596bb1ecd9863824730e90174d66 /apps/theming/lib/ThemingDefaults.php
parent6e2139f60eb6a96deefacd046202d8617fd30b77 (diff)
parentc190dfbe537750e85fedff5931f84a8f0660087a (diff)
Merge pull request #4976 from nextcloud/stable12-4910v12.0.0RC2
[stable12] Fix logo being too big on log in page
Diffstat (limited to 'apps/theming/lib/ThemingDefaults.php')
-rw-r--r--apps/theming/lib/ThemingDefaults.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/theming/lib/ThemingDefaults.php b/apps/theming/lib/ThemingDefaults.php
index 0824a36ccdc..2b3be1e6413 100644
--- a/apps/theming/lib/ThemingDefaults.php
+++ b/apps/theming/lib/ThemingDefaults.php
@@ -192,6 +192,8 @@ class ThemingDefaults extends \OC_Defaults {
$variables = [
'theming-cachebuster' => "'" . $this->config->getAppValue('theming', 'cachebuster', '0') . "'",
+ 'theming-logo-mime' => "'" . $this->config->getAppValue('theming', 'logoMime', '') . "'",
+ 'theming-background-mime' => "'" . $this->config->getAppValue('theming', 'backgroundMime', '') . "'"
];
$variables['image-logo'] = "'".$this->urlGenerator->getAbsoluteURL($this->getLogo())."'";