aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/export.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/export.php')
-rw-r--r--engine/lib/export.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php
index 6291853ca..a578b041e 100644
--- a/engine/lib/export.php
+++ b/engine/lib/export.php
@@ -380,6 +380,9 @@
// If not, then see if any of its sub elements are handled
if (!$handled)
{
+ // Issue a warning
+ trigger_error("'<{$element->name}>' had no registered handler.", E_USER_WARNING);
+
if (isset($element->children))
foreach ($element->children as $c)
__process_element($c);
@@ -388,8 +391,9 @@
{
$IMPORTED_OBJECT_COUNTER ++; // Increment validation counter
$IMPORTED_DATA[] = $handled; // Return the constructed object
- }
+ return true;
+ }
}
/**