summaryrefslogtreecommitdiff
path: root/authorize.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-09-10 11:37:15 -0400
committerDries Buytaert <dries@buytaert.net>2011-09-10 11:37:15 -0400
commite35f1bfafd793567804c0254774aeb85bc3373aa (patch)
tree6aaa5457c8534a7830409bd5ceeee5a482777e20 /authorize.php
parent0d80dee9c89e0d8fd5e292b9e78ed2899c6c2ae1 (diff)
downloadbrdo-e35f1bfafd793567804c0254774aeb85bc3373aa.tar.gz
brdo-e35f1bfafd793567804c0254774aeb85bc3373aa.tar.bz2
- Patch #1263882 by cweagans, TR: Code style: authorize.php.
Diffstat (limited to 'authorize.php')
-rw-r--r--authorize.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/authorize.php b/authorize.php
index cd3df50e6..26319b8e7 100644
--- a/authorize.php
+++ b/authorize.php
@@ -35,7 +35,7 @@ define('DRUPAL_ROOT', getcwd());
define('MAINTENANCE_MODE', 'update');
/**
- * Render a 403 access denied page for authorize.php
+ * Renders a 403 access denied page for authorize.php.
*/
function authorize_access_denied_page() {
drupal_add_http_header('Status', '403 Forbidden');
@@ -45,7 +45,7 @@ function authorize_access_denied_page() {
}
/**
- * Determine if the current user is allowed to run authorize.php.
+ * Determines if the current user is allowed to run authorize.php.
*
* The killswitch in settings.php overrides all else, otherwise, the user must
* have access to the 'administer software updates' permission.
@@ -145,7 +145,7 @@ if (authorize_access_allowed()) {
l(t('Front page'), '<front>'),
));
}
-
+
$output .= theme('item_list', array('items' => $links, 'title' => t('Next steps')));
}
// If a batch is running, let it run.