| 5 comment.module | comment_node_url() |
| 6 comment.module | comment_node_url() |
A simple helper function.
Return value
The 0th and the 1st path components joined by a slash.
2 calls to comment_node_url()
File
- modules/
comment/ comment.module, line 675 - Enables users to comment on published content.
Code
function comment_node_url() {
return arg(0) . '/' . arg(1);
}
Login or register to post comments