diff options
Diffstat (limited to 'mod/bookmarks/actions')
-rw-r--r-- | mod/bookmarks/actions/delete.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mod/bookmarks/actions/delete.php b/mod/bookmarks/actions/delete.php index 5a35d44f5..e99c6604d 100644 --- a/mod/bookmarks/actions/delete.php +++ b/mod/bookmarks/actions/delete.php @@ -1,7 +1,7 @@ <?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> @@ -12,12 +12,13 @@ $guid = get_input('bookmark_guid',0); if ($entity = get_entity($guid)) { if ($entity->canEdit()) { + $container = get_entity($entity->container_guid); if ($entity->delete()) { system_message(elgg_echo("bookmarks:delete:success")); - forward($_SERVER['HTTP_REFERER']); + forward("pg/bookmarks/$container->username/"); } } } - + register_error(elgg_echo("bookmarks:delete:failed")); forward($_SERVER['HTTP_REFERER']);
\ No newline at end of file |