aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-04-20 11:01:33 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-04-20 11:01:33 +0200
commit80be3b0c476308571d1b47e71ca66580ec3fd720 (patch)
treeb589dc5d41feed93887969d918b8792924e8c344
parent319a3ffd857d63a66a3c2120cb72a89cad07b0a7 (diff)
downloadnextcloud-server-80be3b0c476308571d1b47e71ca66580ec3fd720.tar.gz
nextcloud-server-80be3b0c476308571d1b47e71ca66580ec3fd720.zip
Fix wrong path generation
* fixes #15742
-rw-r--r--lib/private/template/resourcenotfoundexception.php2
1 files changed, 1 insertions, 1 deletions
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;
}
}