Definition

comment_node_url()
drupal/modules/comment/comment.module, line 741

Description

A simple helper function.

Return value

The 0th and the 1st path components joined by a slash.

Code

function comment_node_url() {
  return arg(0) . '/' . arg(1);
}