Needs review
Project:
Blueprint
Version:
6.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 May 2011 at 10:24 UTC
Updated:
5 May 2011 at 10:29 UTC
Hi,
I fixed a problem where RTL plugin and IE RTL styles where not loaded and printed in page.tpl.php
Here are the 2 fixes:
- In template.php
$vars['css_alt'] = blueprint_css_reorder($vars['css']);
should be
$vars['css_alt'] = blueprint_css_reorder($css);
Because just before we define $css as $css=$vars['css'] to add the RTL plugin.
- In page.tpl.php
$styles_ie_rtl['ie'];
and
$styles_ie_rtl['ie6'];
Are missing print and should be
print $styles_ie_rtl['ie'];
and
print $styles_ie_rtl['ie6'];
Hope this helps,
Best,
Ivan
Comments
Comment #1
ivan25 commentedFound another one
Variable and path are not correct.
It Should be.
Variable and path are not correct