From 18d46e4733939de06cdd6188736f4adda252fff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Wed, 2 Jan 2008 22:49:43 +0000 Subject: #205334 follow up by myself: options were improperly counted in language list (minor) --- includes/locale.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/locale.inc b/includes/locale.inc index c52a7299b..6676eb1f2 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -551,7 +551,9 @@ function locale_translate_seek_form() { '#description' => t('Leave blank to show all strings. The search is case sensitive.'), ); $form['search']['language'] = array( - '#type' => (count($languages) <= 5 ? 'radios' : 'select'), + // Change type of form widget if more the 5 options will + // be present (2 of the options are added below). + '#type' => (count($languages) <= 3 ? 'radios' : 'select'), '#title' => t('Language'), '#default_value' => (!empty($query['language']) ? $query['language'] : 'all'), '#options' => array_merge(array('all' => t('All languages'), 'en' => t('English (provided by Drupal)')), $languages), -- cgit v1.2.3