Index: modules/system/system.js
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.js,v
retrieving revision 1.14
diff -u -r1.14 system.js
--- modules/system/system.js	17 Dec 2007 23:43:43 -0000	1.14
+++ modules/system/system.js	29 Jan 2008 02:04:27 -0000
@@ -24,11 +24,12 @@
       // Check was successful.
       $("#clean-url input.form-radio").attr("disabled", false);
       $("#clean-url .description span").append('<div class="ok">'+ Drupal.t('Your server has been successfully tested to support this feature.') +"</div>");
-      $("#testing").toggle();
+      $("#testing").hide();
     },
     error: function() {
       // Check failed.
       $("#clean-url .description span").append('<div class="warning">'+ Drupal.t('Your system configuration does not currently support this feature. The <a href="http://drupal.org/node/15365">handbook page on Clean URLs</a> has additional troubleshooting information.') +"</div>");
+      $("#testing").hide();
     }
   });
   $("#clean-url").addClass('clean-url-processed');
@@ -51,12 +52,14 @@
     success: function () {
       // Check was successful.
       $("#clean-url input.form-radio").attr("disabled", false);
-      $("#clean-url .description span").append('<div class="ok">'+ Drupal.settings.cleanURL.success +"</div>");
       $("#clean-url input.form-radio").attr("checked", 1);
+      $("#clean-url .description span").append('<div class="ok">'+ Drupal.settings.cleanURL.success +"</div>");
+      $("#testing").hide();
     },
     error: function() {
       // Check failed.
       $("#clean-url .description span").append('<div class="warning">'+ Drupal.settings.cleanURL.failure +"</div>");
+      $("#testing").hide();
     }
   });
   $("#clean-url").addClass('clean-url-processed');
