summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'update.php')
-rw-r--r--update.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/update.php b/update.php
index 706988845..6d9ba758b 100644
--- a/update.php
+++ b/update.php
@@ -55,15 +55,15 @@ function update_selection_page() {
// make update form and output it.
$form['start'] = array(
- type => 'select',
- title => t('Perform updates from'),
- default_value => (isset($selected) ? $selected : -1),
- options => $dates,
- description => t('This defaults to the first available update since the last update you performed.')
+ '#type' => 'select',
+ '#title' => t('Perform updates from'),
+ '#default_value' => (isset($selected) ? $selected : -1),
+ '#options' => $dates,
+ '#description' => t('This defaults to the first available update since the last update you performed.')
);
$form['submit'] = array(
- type => 'submit',
- value => t('Update')
+ '#type' => 'submit',
+ '#value' => t('Update')
);
drupal_set_title('Drupal database update');