From 4d0c5ca41babedf32295c5fa29f7c07062da2234 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 13 Apr 2015 20:02:42 +0000 Subject: [PATCH] Fix missing parent path parts --- etemplate/js/et2_core_arrayMgr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/et2_core_arrayMgr.js b/etemplate/js/et2_core_arrayMgr.js index 43075bbd7d..92a4fcb4c2 100644 --- a/etemplate/js/et2_core_arrayMgr.js +++ b/etemplate/js/et2_core_arrayMgr.js @@ -162,7 +162,7 @@ var et2_arrayMgr = Class.extend( if (this.parentMgr != null) { - this.parentMgr.getPath(_path); + _path = this.parentMgr.getPath(_path); } return _path;