Removing Minnelli theme from core

This commit is contained in:
Manuel Cillero 2017-07-25 13:34:47 +02:00
parent 3e27c84bbd
commit 8903794a18
10 changed files with 5 additions and 110 deletions

View file

@ -32,7 +32,7 @@ function _drupal_maintenance_theme() {
// Install and update pages are treated differently to prevent theming overrides.
if (defined('MAINTENANCE_MODE') && (MAINTENANCE_MODE == 'install' || MAINTENANCE_MODE == 'update')) {
$theme = 'minnelli';
$theme = 'garland';
}
else {
if (!db_is_active()) {
@ -45,7 +45,7 @@ function _drupal_maintenance_theme() {
drupal_load('module', 'filter');
}
$theme = variable_get('maintenance_theme', 'minnelli');
$theme = variable_get('maintenance_theme', 'garland');
}
$themes = list_themes();