From 72b1f981058e0594dd03f85d4cc241d415b4837c Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 4 Mar 2006 20:27:41 +0000 Subject: [PATCH] Treat the {@""} as multi-line able --- template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template.php b/template.php index bde2705..c62d7d4 100644 --- a/template.php +++ b/template.php @@ -431,8 +431,8 @@ class Template } // Process the empty phrase objects -- do this now so we don't have to worry about it when we're parsing later - $template = preg_replace('#\{@\\\"(.*?)\\\"\}#ie', '$this->_phrase_string(\'$1\')', $template); - + $template = preg_replace('#\{@\\\"(.*?)\\\"\}#ise', '$this->_phrase_string(\'$1\')', $template); + return $template; } -- 2.22.5