summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-02 21:17:35 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-02 21:17:35 +0000
commitb3649703d59c4eca97383855eb4f27572a8634cb (patch)
tree467a2a46370a71168a6c247b6552a539ed5381e2
parent52785592a0826f4cdb954933a19b7926ec891a36 (diff)
downloadbrdo-b3649703d59c4eca97383855eb4f27572a8634cb.tar.gz
brdo-b3649703d59c4eca97383855eb4f27572a8634cb.tar.bz2
- Patch #352911 by swentel: the comment status field was reversed.
-rw-r--r--modules/comment/comment.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index d6fa01848..bafb8059c 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -1418,7 +1418,7 @@ function comment_form(&$form_state, $edit, $title = NULL) {
'#parents' => array('status'),
'#title' => t('Status'),
'#default_value' => $status,
- '#options' => array(t('Published'), t('Not published')),
+ '#options' => array(t('Not published'), t('Published')),
'#weight' => -1,
);
}
@@ -2175,4 +2175,4 @@ function comment_ranking() {
'arguments' => array(variable_get('node_cron_comments_scale', 0)),
),
);
-} \ No newline at end of file
+}