summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-10-11 20:46:17 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-10-11 20:46:17 +0000
commitd747ec821924666a0f86aa51a7318320f1631e66 (patch)
tree06cc51e09da0b3dfb65e64cc976061fce3c590d0 /update.php
parente4f597b0bc73cd5e149e96ff1f06ea5e5094c280 (diff)
downloadbrdo-d747ec821924666a0f86aa51a7318320f1631e66.tar.gz
brdo-d747ec821924666a0f86aa51a7318320f1631e66.tar.bz2
- _ to # (form api changes)
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');