diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-05-08 15:51:01 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-05-08 15:51:01 -0400 |
commit | a22d7770d49716224b3c0ff43bf210b202d797dd (patch) | |
tree | b6debc41483c58c646a83eeec85db26bccd89ad8 /modules/system/system.api.php | |
parent | c09288a94eb89cf1015a6b6b8b218a14d9b686f7 (diff) | |
download | brdo-a22d7770d49716224b3c0ff43bf210b202d797dd.tar.gz brdo-a22d7770d49716224b3c0ff43bf210b202d797dd.tar.bz2 |
- Patch #1024684 by linclark: omit & in @param statements (for consistency).
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 21c9de56c..813d5affd 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -651,7 +651,7 @@ function hook_element_info() { * A module may implement this hook in order to alter the element type defaults * defined by a module. * - * @param &$type + * @param $type * All element type defaults as collected by hook_element_info(). * * @see hook_element_info() @@ -1840,7 +1840,7 @@ function hook_mail_alter(&$message) { * hook in order to reorder the implementing modules, which are otherwise * ordered by the module's system weight. * - * @param &$implementations + * @param $implementations * An array keyed by the module's name. The value of each item corresponds * to a $group, which is usually FALSE, unless the implementation is in a * file named $module.$group.inc. @@ -1867,7 +1867,7 @@ function hook_module_implements_alter(&$implementations, $hook) { * add to or alter the data generated by reading the .info file with * drupal_parse_info_file(). * - * @param &$info + * @param $info * The .info file contents, passed by reference so that it can be altered. * @param $file * Full information about the module or theme, including $file->name, and @@ -3517,11 +3517,11 @@ function hook_install_tasks() { /** * Change the page the user is sent to by drupal_goto(). * - * @param &$path + * @param $path * A Drupal path or a full URL. - * @param &$options + * @param $options * An associative array of additional URL options to pass to url(). - * @param &$http_response_code + * @param $http_response_code * The HTTP status code to use for the redirection. See drupal_goto() for more * information. */ @@ -3990,7 +3990,7 @@ function hook_url_outbound_alter(&$path, &$options, $original_path) { * displayed. Can be used to ensure user privacy in situations where * $account->name is too revealing. * - * @param &$name + * @param $name * The string that format_username() will return. * * @param $account |