diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-05-05 07:02:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-05-05 07:02:13 +0000 |
commit | 4ce4c4ebf0d38560b0bf524c14641d50decfcb8c (patch) | |
tree | 4f54802e8cab931de11bed2b8aa9e47538a92a87 /modules | |
parent | e0be60f6128709f944f1aa56c92b3342006761b9 (diff) | |
download | brdo-4ce4c4ebf0d38560b0bf524c14641d50decfcb8c.tar.gz brdo-4ce4c4ebf0d38560b0bf524c14641d50decfcb8c.tar.bz2 |
#743124 by ldpm: Small correction to hook_form_alter() docs.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 64835c86a..4243596d7 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -1255,7 +1255,7 @@ function hook_page_alter(&$page) { * Perform alterations before a form is rendered. * * One popular use of this hook is to add form elements to the node form. When - * altering a node form, the node object retrieved at from $form['#node']. + * altering a node form, the node object can be accessed at $form['#node']. * * Note that instead of hook_form_alter(), which is called for all forms, you * can also use hook_form_FORM_ID_alter() to alter a specific form. For each |