diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-03-26 00:45:51 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-03-26 00:45:51 +0000 |
commit | 41147eb70ddf89165e2ab2dbfcb5e2056a41453c (patch) | |
tree | ccd5c4883fd73a2bff232a6e248e0b82420799e4 /includes/common.inc | |
parent | 5d12e75902ec575794313488e29fa4b2968619d9 (diff) | |
download | brdo-41147eb70ddf89165e2ab2dbfcb5e2056a41453c.tar.gz brdo-41147eb70ddf89165e2ab2dbfcb5e2056a41453c.tar.bz2 |
#110888: Typos
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/common.inc b/includes/common.inc index efa7d4728..826efb6a3 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -2183,12 +2183,12 @@ function drupal_alter($type, &$data = array()) { // Hang onto a reference to the data array so that it isn't blown away later. $args = array(&$data); - // Now, use func_get_args() to pull in any aditional paramaters passed into + // Now, use func_get_args() to pull in any additional parameters passed into // the drupal_alter() call. - $aditional_args = func_get_args(); - array_shift($aditional_args); - array_shift($aditional_args); - $args = array_merge($args, $aditional_args); + $additional_args = func_get_args(); + array_shift($additional_args); + array_shift($additional_args); + $args = array_merge($args, $additional_args); foreach (module_implements($type .'_alter') as $module) { $function = $module .'_'. $type .'_alter'; |