diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-21 09:49:36 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-21 09:49:36 +0000 |
commit | 8a36483639e289dca144b126a4852302d6b866c1 (patch) | |
tree | c9e8b0c252823b5018cd7ccab7090ed104569eba /modules | |
parent | 6f27d178ba01806015ad4f87cfa0b3648aaf24c9 (diff) | |
download | brdo-8a36483639e289dca144b126a4852302d6b866c1.tar.gz brdo-8a36483639e289dca144b126a4852302d6b866c1.tar.bz2 |
#191310 follow up by keith.smith: fix install instructions and error message about files folder
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 6722d0613..1a7866824 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -165,7 +165,7 @@ function system_requirements($phase) { else if ($phase == 'install') { // For the installer UI, we need different wording. 'value' will // be treated as version, so provide none there. - $requirements['file system']['description'] = $error .' '. $t('To proceed with the installation, please change the %directory directory permissions to allow the installer to write to it. If you are unsure how to do so, please consult the <a href="@handbook_url">on-line handbook</a>.', array('%directory' => $directory, '@handbook_url' => 'http://drupal.org/getting-started')); + $requirements['file system']['description'] = $error .' '. $t('To proceed with the installation, please ensure that the files directory exists and is writable by the installer. If you are unsure how to create this directory and modify its permissions, please consult the <a href="@handbook_url">on-line handbook</a> or INSTALL.txt.', array('%directory' => $directory, '@handbook_url' => 'http://drupal.org/getting-started')); $requirements['file system']['value'] = ''; } } |