diff options
Diffstat (limited to 'views/php/api')
-rw-r--r-- | views/php/api/output.php | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/views/php/api/output.php b/views/php/api/output.php index 1e4133772..2b0b2b754 100644 --- a/views/php/api/output.php +++ b/views/php/api/output.php @@ -1,17 +1,16 @@ <?php - /** - * Elgg PHP output - * This outputs the api as PHP - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - * - */ +/** + * Elgg PHP output + * This outputs the api as PHP + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + * + */ - $result = $vars['result']; - $export = $result->export(); - - echo serialize($export); -?>
\ No newline at end of file +$result = $vars['result']; +$export = $result->export(); + +echo serialize($export);
\ No newline at end of file |