1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[feature/twig] Add check for defined IN_PHPBB in all new Twig related files

PHPBB3-11598
This commit is contained in:
Nathan Guse
2013-07-05 13:10:35 -05:00
parent 99ddbe1adc
commit c5c34ff831
15 changed files with 135 additions and 0 deletions

View File

@@ -7,6 +7,15 @@
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
class phpbb_template_twig_node_expression_binary_notequalequal extends Twig_Node_Expression_Binary
{
public function operator(Twig_Compiler $compiler)