Index: views_content/plugins/views/views_content_plugin_display_ctools_context.inc
===================================================================
--- views_content/plugins/views/views_content_plugin_display_ctools_context.inc	(revision 1282)
+++ views_content/plugins/views/views_content_plugin_display_ctools_context.inc	(working copy)
@@ -66,6 +66,11 @@
       if (!empty($info['file'])) {
         @include_once('./' . $info['path'] . '/' . $info['file']);
       }
+      if (!empty($info['include files']) && is_array($info['include files'])) {
+        foreach ($info['include files'] as $file) {
+          @include_once($file);
+        }
+      }
       $this->variables = array('view' => &$this->view);
 
       if (isset($info['preprocess functions']) && is_array($info['preprocess functions'])) {

