diff options
Diffstat (limited to 'views/opendd/export/entity.php')
| -rw-r--r-- | views/opendd/export/entity.php | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/views/opendd/export/entity.php b/views/opendd/export/entity.php index 35943938b..aaaf6bb8d 100644 --- a/views/opendd/export/entity.php +++ b/views/opendd/export/entity.php @@ -1,19 +1,14 @@ <?php - /** - * Elgg Entity export. - * Displays an entity as ODD - * - * @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 - * @link http://elgg.org/ - */ +/** + * Elgg Entity export. + * Displays an entity as ODD + * + * @package Elgg + * @subpackage Core + */ - $entity = $vars['entity']; - $serialised = exportAsArray($vars['entity']->guid); - foreach ($serialised as $s) - echo $s; - -?>
\ No newline at end of file +$entity = $vars['entity']; +$serialised = exportAsArray($vars['entity']->guid); +foreach ($serialised as $s) { + echo $s; +}
\ No newline at end of file |
