From 351cd825cfcc1e2b6a36c86b2288effcb9e04e61 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Wed, 8 Apr 2020 23:35:37 +0900 Subject: [PATCH] Fix incorrect flattening of extravar value - https://xetown.com/questions/1375456 - xpressengine/xe-core#1659 - xpressengine/xe-core#1661 --- classes/extravar/Extravar.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/extravar/Extravar.class.php b/classes/extravar/Extravar.class.php index a304e3956..d5268b388 100644 --- a/classes/extravar/Extravar.class.php +++ b/classes/extravar/Extravar.class.php @@ -301,7 +301,7 @@ class ExtraItem */ function getValue() { - return removeHackTag($this->value); + return $this->_getTypeValue($this->type, $this->value); } /**