diff options
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module index 63c5284df..fd4d35135 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -346,7 +346,7 @@ function comment_configure() { $form['viewing_options']['comment_default_order'] = array( '#type' => 'radios', '#title' => t('Default display order'), - '#default_value' => variable_get('Default display order', COMMENT_ORDER_NEWEST_FIRST), + '#default_value' => variable_get('comment_default_order', COMMENT_ORDER_NEWEST_FIRST), '#options' => _comment_get_orders(), '#description' => t('The default sorting for new users and anonymous users while viewing comments. These users may change their view using the comment control panel. For registered users, this change is remembered as a persistent user preference.'), ); |