diff options
Diffstat (limited to 'mod/bookmarks/actions/delete.php')
-rw-r--r-- | mod/bookmarks/actions/delete.php | 47 |
1 files changed, 19 insertions, 28 deletions
diff --git a/mod/bookmarks/actions/delete.php b/mod/bookmarks/actions/delete.php index 217197b24..5a35d44f5 100644 --- a/mod/bookmarks/actions/delete.php +++ b/mod/bookmarks/actions/delete.php @@ -1,32 +1,23 @@ <?php +/** + * Elgg bookmarks delete action + * + * @package ElggBookmarks + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Curverider <info@elgg.com> + * @copyright Curverider Ltd 2008-2010 + * @link http://elgg.org/ + */ - /** - * Elgg bookmarks delete action - * - * @package ElggBookmarks - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider <info@elgg.com> - * @copyright Curverider Ltd 2008-2010 - * @link http://elgg.org/ - */ - - $guid = get_input('bookmark_guid',0); - if ($entity = get_entity($guid)) { - - if ($entity->canEdit()) { - - if ($entity->delete()) { - - system_message(elgg_echo("bookmarks:delete:success")); - forward("pg/bookmarks/"); - - } - - } - +$guid = get_input('bookmark_guid',0); +if ($entity = get_entity($guid)) { + if ($entity->canEdit()) { + if ($entity->delete()) { + system_message(elgg_echo("bookmarks:delete:success")); + forward($_SERVER['HTTP_REFERER']); } + } +} - register_error(elgg_echo("bookmarks:delete:failed")); - forward("pg/bookmarks/"); - -?>
\ No newline at end of file +register_error(elgg_echo("bookmarks:delete:failed")); +forward($_SERVER['HTTP_REFERER']);
\ No newline at end of file |