- _ to # (form api changes)

4.7.x
Steven Wittens 2005-10-11 20:46:17 +00:00
parent e4f597b0bc
commit d747ec8219
1 changed files with 7 additions and 7 deletions

View File

@ -55,15 +55,15 @@ function update_selection_page() {
// make update form and output it. // make update form and output it.
$form['start'] = array( $form['start'] = array(
type => 'select', '#type' => 'select',
title => t('Perform updates from'), '#title' => t('Perform updates from'),
default_value => (isset($selected) ? $selected : -1), '#default_value' => (isset($selected) ? $selected : -1),
options => $dates, '#options' => $dates,
description => t('This defaults to the first available update since the last update you performed.') '#description' => t('This defaults to the first available update since the last update you performed.')
); );
$form['submit'] = array( $form['submit'] = array(
type => 'submit', '#type' => 'submit',
value => t('Update') '#value' => t('Update')
); );
drupal_set_title('Drupal database update'); drupal_set_title('Drupal database update');