diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 11:41:23 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 11:41:23 +0000 |
commit | 3630cf462b13d6aafd7f62d46423dad5e92bbd9e (patch) | |
tree | 0110a088cc87370f092547f930a6f985fca04ba9 /engine/lib/export.php | |
parent | 9caa09ee888d7884e22cc46089e6e0fb6579732c (diff) | |
download | elgg-3630cf462b13d6aafd7f62d46423dad5e92bbd9e.tar.gz elgg-3630cf462b13d6aafd7f62d46423dad5e92bbd9e.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* reverted previous
git-svn-id: https://code.elgg.org/elgg/trunk@658 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/export.php')
-rw-r--r-- | engine/lib/export.php | 4 |
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); } /** |