From 4ccf908738945f47aa3a451313fd82371e2ef338 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 25 Oct 2012 10:08:05 +0000 Subject: [PATCH] Prevent an error in case of exception ! SVN:trunk[2350] --- setup/xmldataloader.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/xmldataloader.class.inc.php b/setup/xmldataloader.class.inc.php index f43c932ec..fd5c2524c 100644 --- a/setup/xmldataloader.class.inc.php +++ b/setup/xmldataloader.class.inc.php @@ -420,7 +420,7 @@ class XMLDataLoader } catch(Exception $e) { - $this->m_aErrors[] = "The object changes could not be tracked - $sClass/$iSrcId - ".$e->getMessage(); + $this->m_aErrors[] = "The object changes could not be tracked - $sClass/$iExtKey - ".$e->getMessage(); } } }