From a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 24 May 2009 17:39:35 +0000 Subject: - Patch #471070 by stella: millions of code style fixes. --- update.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'update.php') diff --git a/update.php b/update.php index 7333f178c..89c33b9d9 100644 --- a/update.php +++ b/update.php @@ -237,7 +237,7 @@ function update_script_selection_form() { foreach (array_keys($updates) as $update) { if ($update > $schema_version) { // The description for an update comes from its Doxygen. - $func = new ReflectionFunction($module. '_update_'. $update); + $func = new ReflectionFunction($module . '_update_' . $update); $description = str_replace(array("\n", '*', '/'), '', $func->getDocComment()); $pending[] = "$update - $description"; if (!isset($default)) { @@ -253,7 +253,7 @@ function update_script_selection_form() { '#type' => 'hidden', '#value' => $default, ); - $form['start'][$module. '_updates'] = array( + $form['start'][$module . '_updates'] = array( '#markup' => theme('item_list', $pending, $module . ' module'), ); } -- cgit v1.2.3