Bug reported by a customer on FusionDrupalThemes.com where the theme's non-responsive grid layout options were not being displayed after responsive layouts was disabled.

The attached patch corrects a bug in the theme_settings.php code for Fusion core. There was a slight syntax error in the creation of the non-responsive grid settings form item.

':input[name="responsive_enabled"]' => array('value' => 0)

was changed to:

':input[name=responsive_enabled]' => array('value' => '0')
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

ghladky’s picture

Hi Sheena!
I've tested the patch on IE7 and IE8 and it works.
Thanks, Gerhard

sheena_d’s picture

Status: Needs review » Fixed

This fix is included in Fusion 7.x-2.0-beta2

Status: Fixed » Closed (fixed)

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

  • Commit 564f6c1 on master, 7.x-2.x by sheena_d:
    #1423290 correcting syntax error in the creation of the non-responsive...