Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.440.2.2
diff -u -p -r1.440.2.2 system.module
--- modules/system/system.module	15 Jan 2007 12:05:31 -0000	1.440.2.2
+++ modules/system/system.module	28 Jan 2007 00:02:47 -0000
@@ -742,16 +742,14 @@ function system_file_system_settings() {
 
 function system_image_toolkit_settings() {
   $toolkits_available = image_get_available_toolkits();
-  if (count($toolkits_available) > 1) {
-    $form['image_toolkit'] = array(
-      '#type' => 'radios',
-      '#title' => t('Select an image processing toolkit'),
-      '#default_value' => variable_get('image_toolkit', image_get_toolkit()),
-      '#options' => $toolkits_available
-    );
-  }
-  else {
-    $form['image_toolkit'] = array('#value' => '<p>'. t("No image toolkits found. Drupal will use PHP's built-in GD library for image handling.") .'</p>');
+  $form['image_toolkit'] = array(
+    '#type' => 'radios',
+    '#title' => t('Select an image processing toolkit'),
+    '#default_value' => variable_get('image_toolkit', image_get_toolkit()),
+    '#options' => $toolkits_available
+  );
+  if (count($toolkits_available) == 1) {
+    $form['image_toolkit']['#description'] = '<p>'. t("No image toolkits found. Drupal will use PHP's built-in GD library for image handling.") .'</p>';
   }
   $form['image_toolkit_settings'] = image_toolkit_invoke('settings');
   return system_settings_form($form);
