diff options
Diffstat (limited to 'modules/simpletest/tests/form_test.module')
-rw-r--r-- | modules/simpletest/tests/form_test.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/simpletest/tests/form_test.module b/modules/simpletest/tests/form_test.module index 64360f93f..6eb209fa5 100644 --- a/modules/simpletest/tests/form_test.module +++ b/modules/simpletest/tests/form_test.module @@ -491,7 +491,7 @@ function form_test_storage_form($form, &$form_state) { } // Count how often the form is constructed. $_SESSION['constructions']++; - drupal_set_message("Form constructions: ". $_SESSION['constructions']); + drupal_set_message("Form constructions: " . $_SESSION['constructions']); $form['title'] = array( '#type' => 'textfield', @@ -572,8 +572,8 @@ function form_storage_test_form_continue_validate($form, &$form_state) { * Form submit handler to finish multi-step form. */ function form_test_storage_form_submit($form, &$form_state) { - drupal_set_message("Title: ". check_plain($form_state['values']['title'])); - drupal_set_message("Form constructions: ". $_SESSION['constructions']); + drupal_set_message("Title: " . check_plain($form_state['values']['title'])); + drupal_set_message("Form constructions: " . $_SESSION['constructions']); if (isset($form_state['storage']['thing']['changed'])) { drupal_set_message("The thing has been changed."); } |