diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-03-26 18:20:18 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-03-26 18:23:51 +0200 |
commit | b6501ae966582047a65b22b93f45c5bab049426d (patch) | |
tree | 93e986f1d9c550ff39ce0bb9d3517401592339c4 /apps/theming/lib | |
parent | e2b44d199bea7da74811689ec3ab787135e22de6 (diff) | |
download | nextcloud-server-b6501ae966582047a65b22b93f45c5bab049426d.tar.gz nextcloud-server-b6501ae966582047a65b22b93f45c5bab049426d.zip |
Show UI when using a custom theme
Do not hide the theming app UI when using a custom theme besides it, but warn the users about some settings being overwritten by that.
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Settings/Admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Settings/Admin.php b/apps/theming/lib/Settings/Admin.php index 708bf1914ea..d26a5680637 100644 --- a/apps/theming/lib/Settings/Admin.php +++ b/apps/theming/lib/Settings/Admin.php @@ -67,7 +67,7 @@ class Admin implements ISettings { $theme = $this->config->getSystemValue('theme', ''); if ($theme !== '') { $themable = false; - $errorMessage = $this->l->t('You are already using a custom theme'); + $errorMessage = $this->l->t('You are already using a custom theme. Theming app settings might be overwritten by that.'); } $parameters = [ |