diff --git a/modules/comment/views_handler_field_comment_link_delete.inc b/modules/comment/views_handler_field_comment_link_delete.inc
index 1efb274..da669a0 100644
--- a/modules/comment/views_handler_field_comment_link_delete.inc
+++ b/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
     $cid =  $this->get_value($values, 'cid');
 
     $this->options['alter']['make_link'] = TRUE;
-    $this->options['alter']['path'] = "comment/delete/" . $cid;
+    $this->options['alter']['path'] = "comment/" . $cid . "/delete";
     $this->options['alter']['query'] = drupal_get_destination();
 
     return $text;
diff --git a/modules/comment/views_handler_field_comment_link_edit.inc b/modules/comment/views_handler_field_comment_link_edit.inc
index e2aaa4d..3685a7d 100644
--- a/modules/comment/views_handler_field_comment_link_edit.inc
+++ b/modules/comment/views_handler_field_comment_link_edit.inc
@@ -44,7 +44,7 @@ class views_handler_field_comment_link_edit extends views_handler_field_comment_
       $this->options['alter']['query'] = drupal_get_destination();
     }
 
-    $this->options['alter']['path'] = "comment/edit/" . $comment->cid;
+    $this->options['alter']['path'] = "comment/" . $comment->cid . "/edit";
 
     return $text;
   }
