Closed (duplicate)
Project:
Drupal core
Version:
7.x-dev
Component:
theme system
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Aug 2009 at 14:58 UTC
Updated:
20 Nov 2009 at 13:08 UTC
includes/theme_maintenance.inc
_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_install_page()
$theme_path = 'themes/garland';
return theme_render_template('themes/garland/maintenance-page.tpl.php', $variables);
theme_update_page()
$theme_path = 'themes/garland';
return theme_render_template('themes/garland/maintenance-page.tpl.php', $variables);
after changing these values I was able to show install and update pages with different theme..
| Comment | File | Size | Author |
|---|---|---|---|
| update.png | 21.11 KB | pasqualle | |
| install.png | 12.01 KB | pasqualle |
Comments
Comment #1
marcvangendDuplicate of / fixed in #547068: D7UX: use Seven for installation / updates