Merge branch 'luciferous-master' into dev
This commit is contained in:
+1
-1
@@ -604,7 +604,7 @@ class Mustache {
|
|||||||
protected function _findVariableInContext($tag_name, $context) {
|
protected function _findVariableInContext($tag_name, $context) {
|
||||||
foreach ($context as $view) {
|
foreach ($context as $view) {
|
||||||
if (is_object($view)) {
|
if (is_object($view)) {
|
||||||
if (method_exists($view, $tag_name)) {
|
if (is_callable(array($view, $tag_name))) {
|
||||||
return $view->$tag_name();
|
return $view->$tag_name();
|
||||||
} else if (isset($view->$tag_name)) {
|
} else if (isset($view->$tag_name)) {
|
||||||
return $view->$tag_name;
|
return $view->$tag_name;
|
||||||
|
|||||||
Reference in New Issue
Block a user