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:
authorJulius Härtl <jus@bitgrid.net>2018-03-26 19:43:05 +0300
committerJulius Härtl <jus@bitgrid.net>2018-04-19 21:14:39 +0300
commit5a5c125b233e8099c4a2b7ba530784bb975ed860 (patch)
tree702951d4486ab1e4dadd5839cc787821df4fd2ac /apps/theming/lib/ThemingDefaults.php
parent3ad2768909f99ca37cc2fb617ea623dd5bc773f4 (diff)
Return value
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib/ThemingDefaults.php')
-rw-r--r--apps/theming/lib/ThemingDefaults.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/ThemingDefaults.php b/apps/theming/lib/ThemingDefaults.php
index 4043fa1a059..4957b5ef3c7 100644
--- a/apps/theming/lib/ThemingDefaults.php
+++ b/apps/theming/lib/ThemingDefaults.php
@@ -194,7 +194,7 @@ class ThemingDefaults extends \OC_Defaults {
* @return string
*/
public function getBackground(): string {
- $this->imageManager->getImageUrl('background');
+ return $this->imageManager->getImageUrl('background');
}
/**