templateHandler의 cond 에서 2개 이상의 조건문이 있을 경우 생기는 오류 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7840 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2010-11-16 05:39:16 +00:00
parent c1cc46f7e2
commit ea9ee76cf5

View file

@ -352,7 +352,7 @@
$pre_pos = strrpos($pre, '<');
$np = strpos($next,'"',strpos($next,'"')+1);
$next_pos = strpos(substr($next,$np), '>')+$np;
$next_pos = strpos(substr($next,$np), '>')+$np+1;
$tag = substr($pre, $pre_pos). substr($next, 0, $next_pos);
$pre = substr($pre, 0, $pre_pos);