From 8df413cafc499721917d732874450066810ac95c Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Sat, 26 Apr 2003 01:35:12 +0000 Subject: [PATCH] I believe the original intent was to put the backslash in the character class, this should make it work git-svn-id: file:///svn/phpbb/trunk@3954 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php index 899f727333..bcdb2e00f7 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template.php @@ -286,7 +286,7 @@ class Template $include_blocks = $matches[1]; $code = preg_replace('##', '', $code); - preg_match_all('##', $code, $matches); + preg_match_all('##', $code, $matches); $includephp_blocks = $matches[1]; $code = preg_replace('##', '', $code);