8000 [WebProfilerBundle] fixed TemplateManager when using Twig 2 without compat interfaces by fabpot · Pull Request #24162 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] fixed TemplateManager when using Twig 2 without compat interfaces #24162

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 1 commit into from
Sep 11, 2017
Merged
Changes from all commits
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
[WebProfilerBundle] fixed TemplateManager when using Twig 2 without c…
…ompat interfaces
  • Loading branch information
fabpot committed Sep 11, 2017
commit 10204ffe9950e1f809ca49f8e5a5967b07806aee
5C4D
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ protected function templateExists($template)
}

try {
if ($loader instanceof SourceContextLoaderInterface) {
if ($loader instanceof SourceContextLoaderInterface || method_exists($loader, 'getSourceContext')) {
$loader->getSourceContext($template);
} else {
$loader->getSource($template);
Expand Down
0