diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 18:09:50 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 18:09:50 +0000 |
commit | a6a3f6dad489a5d2c0fdc2b869bac3a0a39952c7 (patch) | |
tree | ad86c5b7468adb17d33b9bc0d7979e81f9ca8a91 | |
parent | 9dc82aa869c36388513d005a846573d332d8f96d (diff) | |
download | elgg-a6a3f6dad489a5d2c0fdc2b869bac3a0a39952c7.tar.gz elgg-a6a3f6dad489a5d2c0fdc2b869bac3a0a39952c7.tar.bz2 |
fixed typo in the code that I moved from /services/export
git-svn-id: http://code.elgg.org/elgg/trunk@7472 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/handlers/export_handler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/handlers/export_handler.php b/engine/handlers/export_handler.php index eb931fdd8..da83ce43c 100644 --- a/engine/handlers/export_handler.php +++ b/engine/handlers/export_handler.php @@ -14,7 +14,7 @@ $guid = get_input("guid"); // guid of the entity // For attributes eg http://example.com/odd/73/attr/owner_uuid/ // or http://example.com/odd/73/metadata/86/ -$type = get_input("type"); // attr, metadata, annotation, rekationship +$type = get_input("type"); // attr, metadata, annotation, relationship $id_or_name = get_input("idname"); // Either a number or the key name (if attribute) $body = ""; |