From 4ff5d3f6e3f2b6aee4c6c353b3e0a3d4aa2e850b Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Thu, 12 May 2011 14:57:25 +0000 Subject: [PATCH] fix typo that prevented the referencing of sub elements in get_array in some cases --- etemplate/inc/class.boetemplate.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/inc/class.boetemplate.inc.php b/etemplate/inc/class.boetemplate.inc.php index 6396425221..f5a3db89b0 100644 --- a/etemplate/inc/class.boetemplate.inc.php +++ b/etemplate/inc/class.boetemplate.inc.php @@ -631,7 +631,7 @@ class boetemplate extends soetemplate $pos = &$arr; foreach($idxs as $idx) { - if (!is_array($pos) && !$reference_info) + if (!is_array($pos) && !$reference_into) { return False; }