From 2b5601d0c4ccec26476b9f209c6063f705cc55c9 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Thu, 12 May 2011 14:57:45 +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 2c857041ab..60643ec896 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; }