diff --git a/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_delete.inc b/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_delete.inc
index 7d0256f..9025964 100644
--- a/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_delete.inc
+++ b/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_delete.inc
@@ -13,7 +13,7 @@ class views_handler_field_comment_link_delete extends views_handler_field_commen
     $text = !empty($this->options['text']) ? $this->options['text'] : t('delete');
 
     $this->options['alter']['make_link'] = TRUE;
-    $this->options['alter']['path'] = "comment/delete/" . $values->{$this->aliases['cid']};
+    $this->options['alter']['path'] = "comment/" . $values->{$this->aliases['cid']} . "/delete";
     $this->options['alter']['query'] = drupal_get_destination();
 
     return $text;
diff --git a/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_edit.inc b/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_edit.inc
index 8ed994d..0c21fa4 100644
--- a/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_edit.inc
+++ b/docroot/sites/all/modules/contrib/views/modules/comment/views_handler_field_comment_link_edit.inc
@@ -44,6 +44,8 @@ class views_handler_field_comment_link_edit extends views_handler_field_comment_
       $this->options['alter']['query'] = drupal_get_destination();
     }
 
+    $this->options['alter']['path'] = "comment/" . $comment->cid . "/edit";
+
     return $text;
   }
 }
