From afdf0f6cbc05615ea2b093ef5940a83870b0b569 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 24 Jul 2010 16:53:28 +0000 Subject: - Patch #850166 by kiamlaluno: string concatenation should be formatted with a space separating the operators (dot .). --- modules/simpletest/tests/form_test.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/simpletest/tests') 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."); } -- cgit v1.2.3