]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix wrong path generation
authorMorris Jobke <hey@morrisjobke.de>
Mon, 20 Apr 2015 09:01:33 +0000 (11:01 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Mon, 20 Apr 2015 09:01:33 +0000 (11:01 +0200)
* fixes #15742

lib/private/template/resourcenotfoundexception.php

index a422563d54195559735eb4bf7cb3180b7ad4e9ad..26655b78eeef408ee72a668df4a420a7a5a860b4 100644 (file)
@@ -39,6 +39,6 @@ class ResourceNotFoundException extends \LogicException {
         * @return string
         */
        public function getResourcePath() {
-               return $this->resource . '/' . $this->webPath;
+               return $this->webPath . '/' . $this->resource;
        }
 }