Closed (fixed)
Project:
Zen
Version:
7.x-5.x-dev
Component:
CSS/HTML markup
Priority:
Minor
Category:
Bug report
Assigned:
Reporter:
Created:
5 Mar 2011 at 12:51 UTC
Updated:
15 Apr 2011 at 09:41 UTC
The header area of maintenance-page.tpl.php is missing a <span> element that should wrap $site_name for consistency with page.tpl.php. The result of this is that if anyone normally applies CSS on the span element this styling will not be applied when the page is in maintenance mode.
To fix simply wrap print $site_name; with opening and closing tags.
Comments
Comment #1
joeyabbs commentedFix:
<span><?php print $site_name; ?></span>Patch attached: http://drupal.org/files/maintenance-bug-1082242-4172372.patch
Comment #2
joeyabbs commentedComment #3
joeyabbs commentedComment #4
johnalbinThanks, Joey! You're in the CHANGELOG now.
Fixed. http://drupalcode.org/project/zen.git/commit/500bd07
Comment #5
joeyabbs commentedThanks John!