r3467에서 {@ 에 대해서는 줄나눔을 허용합니다 {@ 로 시작하는 js/ css를 찾아보았는데 찾지 못하였고 기존 코드에 {@ 를 줄나눔으로 정의하는 곳이 있어서 {@에 대해서는 rollback합니다. #357

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3477 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-07 06:30:12 +00:00
parent 50d0073ba1
commit dbb2b15dc8

View file

@ -110,7 +110,7 @@
$buff = preg_replace_callback('/\{[^@^ ]([^\{\}\n]+)\}/i', array($this, '_compileVarToContext'), $buff);
// 결과를 출력하지 않는 구문 변경
$buff = preg_replace_callback('/\{\@([^\{\}\n]+)\}/i', array($this, '_compileVarToSilenceExecute'), $buff);
$buff = preg_replace_callback('/\{\@([^\{\}]+)\}/i', array($this, '_compileVarToSilenceExecute'), $buff);
// <!--@, --> 의 변경
$buff = preg_replace_callback('!<\!--@(.*?)-->!is', array($this, '_compileFuncToCode'), $buff);