summaryrefslogtreecommitdiff
path: root/authorize.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-29 06:58:56 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-29 06:58:56 +0000
commit58dd4caa9848a83079bf0789b32874281b4d1480 (patch)
tree75d050f99edcda53ef24e8af46628105e9758407 /authorize.php
parent1da73d26c2d8018f389f6290e2be8249280e76bc (diff)
downloadbrdo-58dd4caa9848a83079bf0789b32874281b4d1480.tar.gz
brdo-58dd4caa9848a83079bf0789b32874281b4d1480.tar.bz2
#610290 by dww and sun: system_run_authorized() shouldn't always drupal_goto() so it can be used in submit handlers.
Diffstat (limited to 'authorize.php')
-rw-r--r--authorize.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/authorize.php b/authorize.php
index 140c5a027..d9b437540 100644
--- a/authorize.php
+++ b/authorize.php
@@ -3,10 +3,12 @@
/**
* @file
- * Administrative script where the site owner (the user actually owning the
- * files on the webserver) can authorize certain file-related operations to
- * proceed with elevated privileges, for example to deploy and upgrade modules
- * or themes. Users should not visit this page directly, but instead use an
+ * Administrative script for running authorized file operations.
+ *
+ * Using this script, the site owner (the user actually owning the files on
+ * the webserver) can authorize certain file-related operations to proceed
+ * with elevated privileges, for example to deploy and upgrade modules or
+ * themes. Users should not visit this page directly, but instead use an
* administrative user interface which knows how to redirect the user to this
* script as part of a multistep process. This script actually performs the
* selected operations without loading all of Drupal, to be able to more
@@ -14,7 +16,9 @@
* global killswitch in settings.php ('allow_authorize_operations') and via
* the 'administer software updates' permission.
*
- * @see system_run_authorized()
+ * There are helper functions for setting up an operation to run via this
+ * system in modules/system/system.module. For more information, see:
+ * @link authorize Authorized operation helper functions @endlink
*/
/**