diff options
Diffstat (limited to 'actions/import/opendd.php')
-rw-r--r-- | actions/import/opendd.php | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/actions/import/opendd.php b/actions/import/opendd.php index 9f01c879d..b91a38dc4 100644 --- a/actions/import/opendd.php +++ b/actions/import/opendd.php @@ -1,30 +1,30 @@ <?php - /** - * Elgg OpenDD import action. - * - * This action accepts data to import (in OpenDD format) and performs and import. It accepts - * data as $data. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ +/** + * Elgg OpenDD import action. + * + * This action accepts data to import (in OpenDD format) and performs and import. It accepts + * data as $data. + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - // Safety - admin_gatekeeper(); - action_gatekeeper(); - - // Get input - $data = get_input('data', '', false); - - // Import - $return = import($data); - - if ($return) - system_message(elgg_echo('importsuccess')); - else - register_error(elgg_echo('importfail')); - - forward($_SERVER['HTTP_REFERER']); -?>
\ No newline at end of file +// Safety +admin_gatekeeper(); +action_gatekeeper(); + +// Get input +$data = get_input('data', '', false); + +// Import +$return = import($data); + +if ($return) { + system_message(elgg_echo('importsuccess')); +} else { + register_error(elgg_echo('importfail')); +} + +forward($_SERVER['HTTP_REFERER']);
\ No newline at end of file |