diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 74f82baca84..d335e651d78 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -910,7 +910,6 @@ function install_display_output($output, $install_state) { '#theme' => 'task_list', '#items' => install_tasks_to_display($install_state), '#active' => $active_task, - '#variant' => 'install', ); drupal_add_region_content('sidebar_first', drupal_render($task_list)); } diff --git a/core/includes/theme.maintenance.inc b/core/includes/theme.maintenance.inc index d3023b9a65f..57183d6d4ba 100644 --- a/core/includes/theme.maintenance.inc +++ b/core/includes/theme.maintenance.inc @@ -109,23 +109,16 @@ function _drupal_maintenance_theme() { * An associative array containing: * - items: An associative array of maintenance tasks. * - active: The key for the currently active maintenance task. - * - variant: A variant name to be used for a CSS class. * * @ingroup themeable */ function theme_task_list($variables) { $items = $variables['items']; $active = $variables['active']; - if (isset($variables['variant'])) { - $class = $variables['variant'] . '-task-list'; - } - else { - $class = 'task-list'; - } $done = isset($items[$active]) || $active == NULL; $output = '
When you have performed the steps above, you may proceed.
\n"; $form_action = check_url(drupal_current_script_url(array('op' => 'selection', 'token' => $token))); - $output .= '