diff --git a/livesupport/modules/htmlUI/var/localizer/data.inc.php b/livesupport/modules/htmlUI/var/localizer/data.inc.php
index 795ae58d5..c92570fab 100644
--- a/livesupport/modules/htmlUI/var/localizer/data.inc.php
+++ b/livesupport/modules/htmlUI/var/localizer/data.inc.php
@@ -13,8 +13,6 @@ class Data {
"mode" => 'simplexml'
);
- var $unserializeoptions = array();
-
var $_gs;
function &getInstance()
@@ -150,7 +148,7 @@ class Data {
function convXML2Arr($xml)
{
- $handle = new XML_Unserializer($this->unserializeoptions);
+ $handle = new XML_Unserializer();
$handle->unserialize($xml);
$arr = $handle->getUnserializedData();
diff --git a/livesupport/modules/htmlUI/var/ui_conf.php b/livesupport/modules/htmlUI/var/ui_conf.php
index 8c330f531..b9fefe9f4 100755
--- a/livesupport/modules/htmlUI/var/ui_conf.php
+++ b/livesupport/modules/htmlUI/var/ui_conf.php
@@ -1,4 +1,9 @@