diff --git a/sites/all/modules/features/includes/features.ctools.inc b/sites/all/modules/fe
index 5a82f81..7f5496f 100644
--- a/sites/all/modules/features/includes/features.ctools.inc
+++ b/sites/all/modules/features/includes/features.ctools.inc
@@ -6,7 +6,7 @@ function ctools_features_declare_functions() {
  * Dynamically declare functions under a ctools component's namespace if they are not alre
  */
   if (function_exists('_ctools_features_get_info')) {
-    foreach (_ctools_features_get_info() as $component => $info) {
+    foreach (_ctools_features_get_info(NULL, TRUE) as $component => $info) {
       $code = '';
       if (!function_exists("{$info['module']}_features_api")) {
         $code .= 'function '. $info['module'] .'_features_api() { return ctools_component_
@@ -205,6 +205,7 @@ function _ctools_features_get_info($identifier = NULL, $reset = FALSE) 
     $components = array();
     $modules = features_get_info();
     ctools_include('export');
+    drupal_static('ctools_export_get_schemas', NULL, TRUE);
     foreach (ctools_export_get_schemas_by_module() as $module => $schemas) {
       foreach ($schemas as $table => $schema) {
         if ($schema['export']['bulk export']) {