summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'] = '';
}
}