diff options
-rw-r--r-- | modules/comment/comment.module | 4 |
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 +} |