diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index ca5958ace..66dec2e7c 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1586,7 +1586,7 @@ function comment_load_multiple($cids = array(), $conditions = array()) { */ function comment_load($cid) { $comment = comment_load_multiple(array($cid)); - return $comment ? $comment[$cid] : FALSE;; + return $comment ? $comment[$cid] : FALSE; } /** |