summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-09 17:13:49 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-09 17:13:49 +0000
commit364238c585cb3c2f64b99a385c577f174cdf1f39 (patch)
treee5cd8377a916cf0dc619be063faf71b6a4913123 /update.php
parent592373add47af38eed502ab7a654720c563f7190 (diff)
downloadbrdo-364238c585cb3c2f64b99a385c577f174cdf1f39.tar.gz
brdo-364238c585cb3c2f64b99a385c577f174cdf1f39.tar.bz2
- Patch #679890 by Bojhan, chx: no more pleasing.
Diffstat (limited to 'update.php')
-rw-r--r--update.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/update.php b/update.php
index 2ea827ea0..010e90195 100644
--- a/update.php
+++ b/update.php
@@ -203,7 +203,7 @@ function update_access_denied_page() {
drupal_add_http_header('403 Forbidden');
watchdog('access denied', 'update.php', NULL, WATCHDOG_WARNING);
drupal_set_title('Access denied');
- return '<p>Access denied. You are not authorized to access this page. Please log in using either an account with the <em>administer software updates</em> permission or the site maintenance account (the account you created during installation). If you cannot log in, you will have to edit <code>settings.php</code> to bypass this access check. To do this:</p>
+ return '<p>Access denied. You are not authorized to access this page. Log in using either an account with the <em>administer software updates</em> permission or the site maintenance account (the account you created during installation). If you cannot log in, you will have to edit <code>settings.php</code> to bypass this access check. To do this:</p>
<ol>
<li>With a text editor find the settings.php file on your system. From the main Drupal directory that you installed all the files into, go to <code>sites/your_site_name</code> if such directory exists, or else to <code>sites/default</code> which applies otherwise.</li>
<li>There is a line inside your settings.php file that says <code>$update_free_access = FALSE;</code>. Change it to <code>$update_free_access = TRUE;</code>.</li>
@@ -278,7 +278,7 @@ function update_check_requirements() {
update_task_list('requirements');
drupal_set_title('Requirements problem');
$status_report = theme('status_report', array('requirements' => $requirements));
- $status_report .= 'Please check the error messages and <a href="' . request_uri() . '">try again</a>.';
+ $status_report .= 'Check the error messages and <a href="' . request_uri() . '">try again</a>.';
print theme('update_page', array('content' => $status_report));
exit();
}