[feature/twig] Throw exceptions (don't catch and ignore)

PHPBB3-11598
This commit is contained in:
Nathaniel Guse 2013-06-14 09:41:29 -05:00
parent 9eb3ad4d90
commit 8561e187f0

View file

@ -230,7 +230,7 @@ class phpbb_template_twig implements phpbb_template
} }
catch (Twig_Error $e) catch (Twig_Error $e)
{ {
return false; throw $e;
} }
return true; return true;