Index: core.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/docs/developer/hooks/Attic/core.php,v retrieving revision 1.168.2.92 diff -u -p -r1.168.2.92 core.php --- core.php 31 Aug 2010 07:22:11 -0000 1.168.2.92 +++ core.php 20 Oct 2010 14:22:57 -0000 @@ -734,7 +734,9 @@ function hook_schema_alter(&$schema) { * can also use hook_form_FORM_ID_alter() to alter a specific form. * * @param $form - * Nested array of form elements that comprise the form. + * Nested array of form elements that comprise the form. The arguments + * that drupal_get_form() was originally called with are available in the + * array $form['#parameters']. * @param $form_state * A keyed array containing the current state of the form. * @param $form_id @@ -781,7 +783,9 @@ function hook_form_alter(&$form, &$form_ * implementations of hook_form_alter(), regardless of the module order. * * @param $form - * Nested array of form elements that comprise the form. + * Nested array of form elements that comprise the form. The arguments + * that drupal_get_form() was originally called with are available in the + * array $form['#parameters']. * @param $form_state * A keyed array containing the current state of the form. *