1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 12:05:37 +02:00

[ticket/11724] Replace spaces with tabs

PHPBB3-11724
This commit is contained in:
Nathan Guse 2013-07-28 21:31:12 -05:00
parent d5c56c5d50
commit 0215e0bd95

View File

@ -237,7 +237,7 @@ class phpbb_template_twig_lexer extends Twig_Lexer
$code = preg_replace('# div by ([0-9]+)#', ' divisibleby($1)', $code);
// (ELSE)?\s?IF; match IF|ELSEIF|ELSE IF; replace ELSE IF with ELSEIF
return preg_replace_callback('#<!-- (ELSE)?\s?IF(.+?)-->#', $callback, $code);
return preg_replace_callback('#<!-- (ELSE)?\s?IF(.+?)-->#', $callback, $code);
}
/**