diff options
author | xue <> | 2007-03-31 13:40:02 +0000 |
---|---|---|
committer | xue <> | 2007-03-31 13:40:02 +0000 |
commit | ce428db89f1f3ac5ff1b9b519522aa4701c9c4ad (patch) | |
tree | 0ceffd93a26d8b1f275ee0a58c07d21b35b1a000 /framework/Web | |
parent | a7db73d475f9732f3c785f388732692e1cb23543 (diff) |
Fixed #566
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/UI/TTemplateManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TTemplateManager.php b/framework/Web/UI/TTemplateManager.php index a68b4c51..d71662ca 100644 --- a/framework/Web/UI/TTemplateManager.php +++ b/framework/Web/UI/TTemplateManager.php @@ -655,7 +655,7 @@ class TTemplate extends TApplicationComponent implements ITemplate $tpl[$c++]=array($container,array(TCompositeLiteral::TYPE_EXPRESSION,"\$this->publishFilePath('$this->_contextPath/$literal')"));
else if($str[2]==='[')
{
- $literal=trim(substr($literal,0,strlen($literal)-1));
+ $literal=strtr(trim(substr($literal,0,strlen($literal)-1)),array("'"=>"\'","\\"=>"\\\\"));
$tpl[$c++]=array($container,array(TCompositeLiteral::TYPE_EXPRESSION,"Prado::localize('$literal')"));
}
}
|