From 43b345cabb3e8743a91c39e8d6367c1aa594ebd2 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Thu, 17 Jan 2013 10:33:59 -0500
Subject: [PATCH] Merged revisions from 3.0.5 stable branch: 3758-3768, 3769 shall not be merged to trunk.
---
interface/lib/classes/importer.inc.php | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/interface/lib/classes/importer.inc.php b/interface/lib/classes/importer.inc.php
index 6d0f81f..e74c099 100644
--- a/interface/lib/classes/importer.inc.php
+++ b/interface/lib/classes/importer.inc.php
@@ -41,7 +41,10 @@
}
public function getFault() {
- return $this->faultMessage . ' (' . $this->faultText . ')';
+ $ret = $this->faultMessage . ' (' . $this->faultText . ')';
+ $this->faultMessage = null;
+ $this->faultText = null;
+ return $ret;
}
}
--
Gitblit v1.9.1