comment_uri

Versions
mediamosa-21
comment_uri($comment)

Entity uri callback.

Code

modules/comment/comment.module, line 152

<?php
function comment_uri($comment) {
  return array(
    'path' => 'comment/' . $comment->cid,
    'options' => array('fragment' => 'comment-' . $comment->cid),
  );
}
?>