entity_guid); //check to make sure the current user can actually edit the message board if ($message->canEdit()) { //delete the comment $message->delete(); // delete river entry remove_from_river_by_annotation($annotation_id); //display message system_message(elgg_echo("messageboard:deleted")); //generate the url to forward to $url = "pg/messageboard/" . $entity->username; //forward the user back to their message board forward($url); } } else { $url = ""; system_message(elgg_echo("messageboard:notdeleted")); } forward($url);