From 80be3b0c476308571d1b47e71ca66580ec3fd720 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 20 Apr 2015 11:01:33 +0200 Subject: [PATCH] Fix wrong path generation * fixes #15742 --- lib/private/template/resourcenotfoundexception.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/template/resourcenotfoundexception.php b/lib/private/template/resourcenotfoundexception.php index a422563d541..26655b78eee 100644 --- a/lib/private/template/resourcenotfoundexception.php +++ b/lib/private/template/resourcenotfoundexception.php @@ -39,6 +39,6 @@ class ResourceNotFoundException extends \LogicException { * @return string */ public function getResourcePath() { - return $this->resource . '/' . $this->webPath; + return $this->webPath . '/' . $this->resource; } } -- 2.39.5