With the recently committed code that adds the features integration, I'm getting this warning message:

Notice: Undefined variable: module in styles_style_features_export() (line 29 of styles/includes/styles.features.inc).

Changing

$export['dependencies'][$module] = $style['module'];

to

$export['dependencies'][$module_name] = $style['module'];

removed the warning message for me, though I'm not 100% sure this is the appropriate syntax for the features dependencies code.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jwilson3’s picture

Status: Active » Needs review

bump. no patch, its a one line fix.

jwilson3’s picture

DamienMcKenna’s picture

FileSize
668 bytes

Should it not be this one instead?