summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-30 08:27:37 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-30 08:27:37 +0000
commitac541754c8ef2c16ba3f37431c1fc322cca6a5f9 (patch)
tree7eee587a0dd7f61adc6cc39aaa1296a4567b2007 /install.php
parentf49088015f77471ebe31f5663fc2cf2177b0901c (diff)
downloadbrdo-ac541754c8ef2c16ba3f37431c1fc322cca6a5f9.tar.gz
brdo-ac541754c8ef2c16ba3f37431c1fc322cca6a5f9.tar.bz2
- Patch #105368 by ChrisKennedy: Clarify that settings.php is set to RO on install.
Diffstat (limited to 'install.php')
-rw-r--r--install.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/install.php b/install.php
index 80d697adb..6d80892c7 100644
--- a/install.php
+++ b/install.php
@@ -87,6 +87,9 @@ function install_main() {
if (!drupal_verify_install_file($settings_file, FILE_EXIST|FILE_READABLE|FILE_NOT_WRITABLE)) {
drupal_set_message(st('All necessary changes to %file have been made, so you should now remove write permissions to this file. Failure to remove write permissions to this file is a security risk.', array('%file' => $settings_file)), 'error');
}
+ else {
+ drupal_set_message(st('All necessary changes to %file have been made. It has been set to read-only for security.', array('%file' => $settings_file)));
+ }
// Show end page.
install_complete($profile);