### Eclipse Workspace Patch 1.0
#P d7
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.180
diff -u -r1.180 system.admin.inc
--- modules/system/system.admin.inc	17 Aug 2009 19:14:41 -0000	1.180
+++ modules/system/system.admin.inc	19 Aug 2009 00:26:02 -0000
@@ -1448,7 +1448,7 @@
     '#title' => t('Public file system path'),
     '#default_value' => file_directory_path(),
     '#maxlength' => 255,
-    '#description' => t('A local file system path where public files will be stored. This directory must exist and be writable by Drupal. This directory must be relative to the Drupal installation directory and be accessible over the web.'),
+    '#description' => t('Must be relative to the Drupal installation directory and be accessible over the web.'),
     '#after_build' => array('system_check_directory'),
   );
 
@@ -1457,7 +1457,7 @@
     '#title' => t('Private file system path'),
     '#default_value' => file_directory_path('private'),
     '#maxlength' => 255,
-    '#description' => t('A local file system path where private files will be stored. This directory must exist and be writable by Drupal. This directory should not be accessible over the web.'),
+    '#description' => t('Should not be accessible over the web.'),
     '#after_build' => array('system_check_directory'),
   );
 
@@ -1466,7 +1466,7 @@
     '#title' => t('Temporary directory'),
     '#default_value' => file_directory_path('temporary'),
     '#maxlength' => 255,
-    '#description' => t('A local file system path where temporary files will be stored. This directory should not be accessible over the web.'),
+    '#description' => t('Should not be accessible over the web.'),
     '#after_build' => array('system_check_directory'),
   );
   $wrappers = file_get_stream_wrappers();
@@ -1479,7 +1479,7 @@
     '#title' => t('Default download method'),
     '#default_value' => 'public',
     '#options' => $options,
-    '#description' => t('This setting is used as the preferred download method. The use of public files is more efficient, but does not provide any access control.'),
+    '#description' => t('Using public files is more efficient, but does not provide any access control.'),
   );
 
   return system_settings_form($form, TRUE);
