From ec04325bb29f431f05d59a7cb8e4429b86267b65 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Thu, 6 Apr 2006 04:18:30 +0000 Subject: [PATCH] - Make forum_hot_topic scale a bit more logical --- modules/forum.module | 2 +- modules/forum/forum.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/forum.module b/modules/forum.module index 267d3e120f18..cc607d18c061 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -177,7 +177,7 @@ function forum_taxonomy($op, $type, $term = NULL) { function forum_admin_configure() { $form = array(); - $number = drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100, 10000)); + $number = drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100, 150, 200, 250, 300, 350, 400, 500)); $form['forum_hot_topic'] = array('#type' => 'select', '#title' => t('Hot topic threshold'), '#default_value' => variable_get('forum_hot_topic', 15), diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 267d3e120f18..cc607d18c061 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -177,7 +177,7 @@ function forum_taxonomy($op, $type, $term = NULL) { function forum_admin_configure() { $form = array(); - $number = drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100, 10000)); + $number = drupal_map_assoc(array(5, 10, 15, 20, 25, 30, 35, 40, 50, 60, 80, 100, 150, 200, 250, 300, 350, 400, 500)); $form['forum_hot_topic'] = array('#type' => 'select', '#title' => t('Hot topic threshold'), '#default_value' => variable_get('forum_hot_topic', 15), -- GitLab