Fixing Issue #11

This commit is contained in:
Jeremy Bush
2010-08-17 15:24:30 -04:00
committed by Justin Hileman
parent 2bd68f59b1
commit 758027bd91
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -469,7 +469,7 @@ class Mustache {
* @return string
*/
protected function _renderEscaped($tag_name) {
return htmlentities($this->_getVariable($tag_name), null, $this->_charset);
return htmlentities($this->_getVariable($tag_name), ENT_COMPAT, $this->_charset);
}
/**