* Elgg default annotation view
*
* @uses $vars['annotation']
+ * @uses $vars['delete_action'] A custom action for the delete button.
+ * The annotation ID is passed as 'annotation_id'.
*/
$annotation = $vars['annotation'];
*
* @uses $vars['annotation'] ElggAnnotation object
* @uses $vars['full'] Display fill view or brief view
- * @uses $vars['delete_action'] A custom action for the delete button. Defaults to
- * action/comments/delete The annotation ID is passed
- * as 'annotation_id'.
*/
if (!isset($vars['annotation'])) {
}
$full_view = elgg_extract('full', $vars, true);
-$delete_action = elgg_extract('delete_action', $vars, 'action/comments/delete');
$comment = $vars['annotation'];
$delete_button = '';
if ($comment->canEdit()) {
- $url = elgg_http_add_url_query_elements($delete_action, array('annotation_id' => $comment->id));
+ $url = "action/comments/delete?annotation_id=$comment->id";
$delete_button = elgg_view("output/confirmlink", array(
'href' => $url,
'text' => elgg_echo('delete'),