diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-02-09 12:29:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-02-09 12:29:39 +0000 |
commit | a2ec3c3852d825c407e10a0ca76470f8026a33d7 (patch) | |
tree | 6a49c6c41061c5941f89393c6ca9c084bbb07caa /modules/comment | |
parent | 7e8709b2dc0236232451d02a8cf440f290f6c63f (diff) | |
download | brdo-a2ec3c3852d825c407e10a0ca76470f8026a33d7.tar.gz brdo-a2ec3c3852d825c407e10a0ca76470f8026a33d7.tar.bz2 |
- Patch #708144 by lilou: remove double semicolons at end of line.
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; } /** |