Needed print head variable " print $head " in page.tpl.php.

Current Code

  <head>
    <title><?php print $head_title ?></title>
    <?php print $styles ?>
    <?php print $scripts ?>
    <!--[if lt IE 7]>
      <?php print phptemplate_get_ie_styles(); ?>
    <![endif]-->
  </head>

Code with the variable

  <head>
    <?php print $head ?>
    <title><?php print $head_title ?></title>
    <?php print $styles ?>
    <?php print $scripts ?>
    <!--[if lt IE 7]>
      <?php print phptemplate_get_ie_styles(); ?>
    <![endif]-->
  </head>

Comments

daycrom’s picture

Status: Active » Needs review
Jeff Burnz’s picture

Priority: Normal » Critical

ekkk, now you mention it I do recall deleting that for some reason and thinking "I must go back and fix that", seems I forgot.

Committed to HEAD, will need a new release as this is critical.

BTW, your snippet that includes phptemplate_get_ie_styles(); is not from AdaptiveTheme, and if it is and you have added that, I ask why. The conditional stylesheets module is built in, you can define IE stylesheets in the info file of your theme.

Jeff Burnz’s picture

Status: Needs review » Fixed
daycrom’s picture

snippet that includes phptemplate_get_ie_styles() is my error... was only a test drawn from another template

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.