summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'update.php')
-rw-r--r--update.php4
1 files changed, 2 insertions, 2 deletions
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'),
);
}