summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-07-13 23:45:30 -0400
committerwebchick <webchick@24967.no-reply.drupal.org>2011-07-13 23:45:30 -0400
commit8ffa608374abb916c6aa7876e45d624f7e4a867a (patch)
tree22c8ebe83b48ace730e29a144c12391c342c9691
parentc69b525c382bd24d389e56af3033d5a82051aab1 (diff)
downloadbrdo-8ffa608374abb916c6aa7876e45d624f7e4a867a.tar.gz
brdo-8ffa608374abb916c6aa7876e45d624f7e4a867a.tar.bz2
Issue #929166 by dww, deviantintegral, yoroy: Add warning if private files are accessible over the web.
-rw-r--r--modules/system/system.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 9e7d69dd3..0d3a8d7a8 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1757,7 +1757,7 @@ function system_file_system_settings() {
'#title' => t('Private file system path'),
'#default_value' => variable_get('file_private_path', ''),
'#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('An existing local file system path for storing private files. It should be writable by Drupal and not accessible over the web. See the online handbook for <a href="@handbook">more information about securing private files</a>.', array('@handbook' => 'http://drupal.org/handbook/modules/file')),
'#after_build' => array('system_check_directory'),
);