From 1c82f9fa138a89f1f1872694f0ebf6f1f0ee6b77 Mon Sep 17 00:00:00 2001 From: Sebastian Stumpf Date: Mon, 5 Oct 2015 13:57:22 +0200 Subject: [PATCH] Fix: Building invalid image URL on Windows Systems. --- protected/humhub/components/Theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protected/humhub/components/Theme.php b/protected/humhub/components/Theme.php index 8c3b2404ba..87d10470b3 100644 --- a/protected/humhub/components/Theme.php +++ b/protected/humhub/components/Theme.php @@ -68,7 +68,7 @@ class Theme extends \yii\base\Theme if (file_exists($themedFile)) { return str_replace('@web', $this->getBaseUrl(), $path); } else { - $path = Yii::getAlias($path); + return $path; } }