summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-20 08:26:42 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-20 08:26:42 +0000
commit32df01011f344aba1bf8802c30a473ab1dc288f7 (patch)
tree642f3928733d2d59ad7ed2bc4f3228ef50d43c4e
parent090b90227b42473c065722a0b3d4b51af6b195b0 (diff)
downloadbrdo-32df01011f344aba1bf8802c30a473ab1dc288f7.tar.gz
brdo-32df01011f344aba1bf8802c30a473ab1dc288f7.tar.bz2
#197690 by JordanCronin (as GHOP 68): server permissions are now explained very well in a handbook page, link to that
-rw-r--r--install.php2
-rw-r--r--modules/system/system.install2
2 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index 34c21f3fb..0947c1734 100644
--- a/install.php
+++ b/install.php
@@ -896,7 +896,7 @@ function install_check_requirements($profile, $verify) {
}
if (!$writable) {
- drupal_set_message(st('The @drupal installer requires write permissions to %file during the installation process. If you are unsure how to grant file permissions, please consult the <a href="@handbook_url">on-line handbook</a>.', array('@drupal' => drupal_install_profile_name(), '%file' => $file, '@handbook_url' => 'http://drupal.org/getting-started')), 'error');
+ drupal_set_message(st('The @drupal installer requires write permissions to %file during the installation process. If you are unsure how to grant file permissions, please consult the <a href="@handbook_url">on-line handbook</a>.', array('@drupal' => drupal_install_profile_name(), '%file' => $file, '@handbook_url' => 'http://drupal.org/server-permissions')), 'error');
}
}
}
diff --git a/modules/system/system.install b/modules/system/system.install
index c9eed300f..c50f01770 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -170,7 +170,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 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']['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/server-permissions'));
$requirements['file system']['value'] = '';
}
}