From 694781d190fba09437a37983f077d0381a56050b Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 16 Oct 2009 21:25:25 +0000 Subject: Finished standardizing seconday views. git-svn-id: http://code.elgg.org/elgg/trunk@3559 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/php/export/entity.php | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'views/php/export/entity.php') diff --git a/views/php/export/entity.php b/views/php/export/entity.php index a23f2c1d8..ecceb5fd3 100644 --- a/views/php/export/entity.php +++ b/views/php/export/entity.php @@ -1,21 +1,21 @@ getExportableValues(); - - foreach ($exportable_values as $v) - $export->$v = $entity->$v; - - echo serialize($export); -?> \ No newline at end of file +$entity = $vars['entity']; + +$export = new stdClass; +$exportable_values = $entity->getExportableValues(); + +foreach ($exportable_values as $v) { + $export->$v = $entity->$v; +} + +echo serialize($export); -- cgit v1.2.3