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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php
index 815fc5819..4953fab91 100644
--- a/engine/lib/export.php
+++ b/engine/lib/export.php
@@ -164,7 +164,7 @@
* @param ODDWrapperFactory $wrapper Optional wrapper permitting the export process to embed ODD in other document formats.
* @return xml
*/
- function export($guid, ODDWrapperFactory $wrapper = null)
+ function export($guid)
{
$guid = (int)$guid;
@@ -179,7 +179,7 @@
$odd = new ODDDocument($to_be_serialised);
- return ODD_Export($odd, $wrapper);
+ return ODD_Export($odd);
}
/**