diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-25 10:38:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-25 10:38:35 +0000 |
commit | af3f94b37ebb4e6b2d03f937e40a157a17dff223 (patch) | |
tree | 002f4e23f118c3324f7cf2bceb781c441f55406f /includes/form.inc | |
parent | 4f6cf1d1a1ac7f6ef0295cbdcf24ea980fda61b7 (diff) | |
download | brdo-af3f94b37ebb4e6b2d03f937e40a157a17dff223.tar.gz brdo-af3f94b37ebb4e6b2d03f937e40a157a17dff223.tar.bz2 |
- Patch #693614 by asimmonds: fixed PHPDoc spelling typos.
Diffstat (limited to 'includes/form.inc')
-rw-r--r-- | includes/form.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/form.inc b/includes/form.inc index f9f0a27df..401c881b4 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -776,7 +776,7 @@ function drupal_prepare_form($form_id, &$form, &$form_state) { * form validation functions are passed an explicit copy of the * values for the sake of simplicity. Validation handlers can also * $form_state to pass information on to submit handlers. For example: - * $form_state['data_for_submision'] = $data; + * $form_state['data_for_submission'] = $data; * This technique is useful when validation requires file parsing, * web service requests, or other expensive requests that should * not be repeated in the submission step. @@ -881,7 +881,7 @@ function drupal_redirect_form($form_state) { * form validation functions are passed an explicit copy of the * values for the sake of simplicity. Validation handlers can also * $form_state to pass information on to submit handlers. For example: - * $form_state['data_for_submision'] = $data; + * $form_state['data_for_submission'] = $data; * This technique is useful when validation requires file parsing, * web service requests, or other expensive requests that should * not be repeated in the submission step. @@ -3413,7 +3413,7 @@ function batch_process($redirect = NULL, $url = 'batch', $redirect_callback = 'd // The batch is now completely built. Allow other modules to make changes // to the batch so that it is easier to reuse batch processes in other - // enviroments. + // environments. drupal_alter('batch', $batch); // Assign an arbitrary id: don't rely on a serial column in the 'batch' |