Closed (fixed)
Project:
Features Override
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Jul 2012 at 09:32 UTC
Updated:
6 Jun 2013 at 13:30 UTC
$code = array_pop(features_invoke($component, 'features_export_render', $module, array_keys($default), NULL));
Should be something like
$tmp = features_invoke($component, 'features_export_render', $module, array_keys($default), NULL);
$code = array_pop($tmp);Since I'm not sure what the code does, I don't know what would be an appropriate name, which is why I'm not submitting a patch.
Comments
Comment #1
RunePhilosof commentedApparently the correct name was $export.
http://drupalcode.org/project/features_override.git/commitdiff/f8ef5e1c1...