diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-07-24 16:53:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-07-24 16:53:28 +0000 |
commit | afdf0f6cbc05615ea2b093ef5940a83870b0b569 (patch) | |
tree | 153ce3712636514a3e560fd3adb1d9d2609cb4e7 /modules/simpletest | |
parent | d963c364a564a3c2d9abfac2e265f5119a858214 (diff) | |
download | brdo-afdf0f6cbc05615ea2b093ef5940a83870b0b569.tar.gz brdo-afdf0f6cbc05615ea2b093ef5940a83870b0b569.tar.bz2 |
- Patch #850166 by kiamlaluno: string concatenation should be formatted with a space separating the operators (dot .).
Diffstat (limited to 'modules/simpletest')
-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."); } |