diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-10-31 18:01:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-10-31 18:01:01 +0000 |
commit | 9a9ea374036c5d67829fd51b5db64afa23db8ede (patch) | |
tree | 3684f51f3e28d1ef550039a7f7cc1be57f236889 /modules/system/system.admin.inc | |
parent | b99aab8381994ba1b6e80e55ecf4bdf07caa209a (diff) | |
download | brdo-9a9ea374036c5d67829fd51b5db64afa23db8ede.tar.gz brdo-9a9ea374036c5d67829fd51b5db64afa23db8ede.tar.bz2 |
- Patch #100582 by O Govinda, keith.smith: improved the user documentation on the UI.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index aa66cd57c..1a7d5561b 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1270,7 +1270,7 @@ function system_file_system_settings() { '#title' => t('File system path'), '#default_value' => file_directory_path(), '#maxlength' => 255, - '#description' => t('A file system path where the files will be stored. This directory has to exist and be writable by Drupal. If the download method is set to public this directory has to be relative to the Drupal installation directory, and be accessible over the web. When download method is set to private this directory should not be accessible over the web. Changing this location after the site has been in use will cause problems so only change this setting on an existing site if you know what you are doing.'), + '#description' => t('A file system path where the files will be stored. This directory must exist and be writable by Drupal. If the download method is set to public, this directory must be relative to the Drupal installation directory and be accessible over the web. If the download method is set to private, this directory should not be accessible over the web. Changing this location will modify all download paths and may cause unexpected problems on an existing site.'), '#after_build' => array('system_check_directory'), ); @@ -1279,7 +1279,7 @@ function system_file_system_settings() { '#title' => t('Temporary directory'), '#default_value' => file_directory_temp(), '#maxlength' => 255, - '#description' => t('Location where uploaded files will be kept during previews. Relative paths will be resolved relative to the Drupal installation directory.'), + '#description' => t('A file system path where uploaded files will be stored during previews.'), '#after_build' => array('system_check_directory'), ); @@ -1288,7 +1288,7 @@ function system_file_system_settings() { '#title' => t('Download method'), '#default_value' => variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC), '#options' => array(FILE_DOWNLOADS_PUBLIC => t('Public - files are available using HTTP directly.'), FILE_DOWNLOADS_PRIVATE => t('Private - files are transferred by Drupal.')), - '#description' => t('If you want any sort of access control on the downloading of files, this needs to be set to <em>private</em>. You can change this at any time, however all download URLs will change and there may be unexpected problems so it is not recommended.') + '#description' => t('Choose the <em>Public download</em> method unless you wish to enforce fine-grained access controls over file downloads. Changing the download method will modify all download paths and may cause unexpected problems on an existing site.') ); return system_settings_form($form); |