Created
June 3, 2014 09:06
-
-
Save syossan27/d71e725c3ce9540be9d5 to your computer and use it in GitHub Desktop.
Laravel4.2+HHVMでのバグっぽい挙動 ref: http://qiita.com/syo/items/0a84d0c4d90e6b4a1bd1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected function compileEchos($value) | |
{ | |
// 引数の$valueをerror_logなどで確認すればよく分かる | |
$difference = strlen($this->contentTags[0]) - strlen($this->escapedTags[0]); | |
if ($difference > 0) | |
{ | |
return $this->compileEscapedEchos($this->compileRegularEchos($value)); | |
} | |
return $this->compileRegularEchos($this->compileEscapedEchos($value)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment