Closed (fixed)
Project:
Acquia Slate
Version:
6.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Aug 2009 at 21:15 UTC
Updated:
12 Apr 2010 at 16:03 UTC
In the XHTML it is wrapped in which is generated from template.php. I don't know enough about this to sort it.
Luke.
| Comment | File | Size | Author |
|---|---|---|---|
| Screenshot-Archeia | Geek Gadgets 02 - 08 - 2007.png | 127.67 KB | Lucretia9 |
Comments
Comment #1
Lucretia9 commentedIn fact, changing the first && to an || on line 560 of template.php fixes the problem, whether or not this works for all cases, I don't know:
if (isset($element['#attributes']['style']) || (stristr($element['#attributes']['style'], 'display: none;') || stristr($element['#attributes']['class'], 'fivestar-submit'))) {
rather than:
if (isset($element['#attributes']['style']) && (stristr($element['#attributes']['style'], 'display: none;') || stristr($element['#attributes']['class'], 'fivestar-submit'))) {
Comment #2
jeremycaldwell commentedComment #4
dpatte commentedI just upgraded to version 2.0 from 1.4 and also see this problem. Is changing template.php still the best solution?
Thanks
Comment #5
jeremycaldwell commentedYes changing the template.php is still the way to go here.