diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-20 11:01:33 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-20 11:01:33 +0200 |
commit | 80be3b0c476308571d1b47e71ca66580ec3fd720 (patch) | |
tree | b589dc5d41feed93887969d918b8792924e8c344 | |
parent | 319a3ffd857d63a66a3c2120cb72a89cad07b0a7 (diff) | |
download | nextcloud-server-80be3b0c476308571d1b47e71ca66580ec3fd720.tar.gz nextcloud-server-80be3b0c476308571d1b47e71ca66580ec3fd720.zip |
Fix wrong path generation
* fixes #15742
-rw-r--r-- | lib/private/template/resourcenotfoundexception.php | 2 |
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; } } |