summaryrefslogtreecommitdiff
path: root/modules/comment
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-02-09 12:29:39 +0000
committerDries Buytaert <dries@buytaert.net>2010-02-09 12:29:39 +0000
commita2ec3c3852d825c407e10a0ca76470f8026a33d7 (patch)
tree6a49c6c41061c5941f89393c6ca9c084bbb07caa /modules/comment
parent7e8709b2dc0236232451d02a8cf440f290f6c63f (diff)
downloadbrdo-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.module2
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;
}
/**