diff options
Diffstat (limited to 'views/php/api/output.php')
| -rw-r--r-- | views/php/api/output.php | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/views/php/api/output.php b/views/php/api/output.php index d23a1bdeb..14259564c 100644 --- a/views/php/api/output.php +++ b/views/php/api/output.php @@ -1,19 +1,13 @@ <?php - /** - * Elgg PHP output - * This outputs the api as PHP - * - * @package Elgg - * @subpackage Core - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd - * @copyright Curverider Ltd 2008-2009 - * @link http://elgg.org/ - * - */ +/** + * Elgg PHP output + * This outputs the api results as serialized PHP + * + * @package Elgg + * @subpackage Core + */ - $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 |
