diff options
Diffstat (limited to 'mod/exporttest')
-rw-r--r-- | mod/exporttest/index.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mod/exporttest/index.php b/mod/exporttest/index.php index 3c1320e1f..f3010d971 100644 --- a/mod/exporttest/index.php +++ b/mod/exporttest/index.php @@ -21,17 +21,20 @@ if ($guid) { - echo elgg_view("exporttest/outputxml", array("xml" => export($guid))); + echo elgg_view_layout("one_column", elgg_view("exporttest/outputxml", array("xml" => export($guid)))); } else if ($action=='import') { - $body = print_r(import(get_input('xml')), true); - $body .= elgg_view("exporttest/main", array("owner_id" => $owner_id)); + $area1 = print_r(import(get_input('xml')), true); + $area1 .= elgg_view("exporttest/main", array("owner_id" => $owner_id)); + + $body = elgg_view_layout("one_column", $area1); + page_draw("Import results",$body); } else { - $body = elgg_view("exporttest/main", array("owner_id" => $owner_id)); + $body = elgg_view_layout("one_column", elgg_view("exporttest/main", array("owner_id" => $owner_id))); page_draw("Export a GUID",$body); } ?>
\ No newline at end of file |