Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.159
diff -u -p -r1.159 install.php
--- install.php	1 Mar 2009 09:32:16 -0000	1.159
+++ install.php	5 Mar 2009 22:35:53 -0000
@@ -725,7 +725,7 @@ function install_tasks($profile, $task) 
       drupal_add_js('misc/timezone.js');
       // We add these strings as settings because JavaScript translation does not
       // work on install time.
-      drupal_add_js(array('copyFieldValue' => array('edit-site-mail' => array('edit-account-mail')), 'cleanURL' => array('success' => st('Your server has been successfully tested to support this feature.'), 'failure' => st('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.'), 'testing' => st('Testing clean URLs...'))), 'setting');
+      drupal_add_js(array('copyFieldValue' => array('edit-site-mail' => array('edit-account-mail')), 'cleanURL' => array('failure' => st('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.'), 'testing' => st('Testing clean URLs...'))), 'setting');
       drupal_add_js('
 // Global Killswitch
 if (Drupal.jsEnabled) {
@@ -1031,7 +1031,7 @@ function install_configure_form(&$form_s
     '#title' => st('Clean URLs'),
     '#default_value' => 0,
     '#options' => array(0 => st('Disabled'), 1 => st('Enabled')),
-    '#description' => st('This option makes Drupal emit "clean" URLs (i.e. without <code>?q=</code> in the URL).'),
+    '#description' => st('Makes Drupal emit "clean" URLs (i.e. without <code>?q=</code> in the URL).'),
     '#disabled' => TRUE,
     '#prefix' => '<div id="clean-url" class="install">',
     '#suffix' => '</div>',
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.129
diff -u -p -r1.129 system.admin.inc
--- modules/system/system.admin.inc	26 Feb 2009 07:30:28 -0000	1.129
+++ modules/system/system.admin.inc	5 Mar 2009 22:33:03 -0000
@@ -1743,7 +1743,7 @@ function system_clean_url_settings() {
     '#title' => t('Clean URLs'),
     '#default_value' => 0,
     '#options' => array(t('Disabled'), t('Enabled')),
-    '#description' => t('This option makes Drupal emit "clean" URLs (i.e. without <code>?q=</code> in the URL).'),
+    '#description' => t('Makes Drupal emit "clean" URLs (i.e. without <code>?q=</code> in the URL).'),
   );
 
   if (!variable_get('clean_url', 0)) {
Index: modules/system/system.js
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.js,v
retrieving revision 1.19
diff -u -p -r1.19 system.js
--- modules/system/system.js	18 Feb 2009 13:46:55 -0000	1.19
+++ modules/system/system.js	5 Mar 2009 22:41:23 -0000
@@ -59,7 +59,6 @@ Drupal.cleanURLsInstallCheck = function(
       // Check was successful.
       $("#clean-url input.form-radio").attr("disabled", false);
       $("#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() {

