Fix wrong path generation

* fixes #15742
remotes/origin/poc-doctrine-migrations
Morris Jobke 11 years ago
parent 319a3ffd85
commit 80be3b0c47
  1. 2
      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;
}
}

Loading…
Cancel
Save