Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Improved the error message when a template is not found #17434

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Mar 3, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Simplified everything
  • Loading branch information
javiereguiluz committed Mar 1, 2016
commit 0134d7678516f6c9ec56059e0596685c501724b4
6 changes: 2 additions & 4 deletions 6 src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,18 @@ protected function findTemplate($template, $throw = true)
try {
$file = parent::findTemplate($logicalName);
} catch (\Twig_Error_Loader $e) {
$previous = $e;
$errorMessage = $e->getMessage();
$twigLoaderException = $e;

// for BC
try {
$template = $this->parser->parse($template);
$file = $this->locator->locate($template);
} catch (\Exception $e) {
$previous = $e;
}
}

if (false === $file || null === $file) {
throw new \Twig_Error_Loader($errorMessage, -1, null, $previous);
throw $twigLoaderException;
}

return $this->cache[$logicalName] = $file;
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.