1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-26 01:04:10 +02:00

[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)
{
return false;
throw $e;
}
return true;