diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-04-20 16:55:36 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-04-20 16:55:36 +0200 |
commit | fe2cbc37951ea25e3d545d78289c64542ef58eca (patch) | |
tree | b8d1a6f1e3ee9319b1df201c1d7ed29099755a11 /lib | |
parent | 3e8f6cdba95690a12de4f8d6b99c59f7a823fbb0 (diff) | |
parent | ddcd79132db5b4251bff10c2dba241460fdc8f68 (diff) | |
download | nextcloud-server-fe2cbc37951ea25e3d545d78289c64542ef58eca.tar.gz nextcloud-server-fe2cbc37951ea25e3d545d78289c64542ef58eca.zip |
Merge pull request #15744 from owncloud/fix-inverted-path-in-resourcenotfound
Fix wrong path generation
Diffstat (limited to 'lib')
-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; } } |