Fix wrong path generation

* fixes #15742
This commit is contained in:
Morris Jobke 2015-04-20 11:01:33 +02:00
parent 319a3ffd85
commit 80be3b0c47
1 changed files with 1 additions and 1 deletions

View File

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