? ctools-931648.patch ? includes/.directory Index: includes/content.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/ctools/includes/content.inc,v retrieving revision 1.12.2.13 diff -u -p -r1.12.2.13 content.inc --- includes/content.inc 19 Aug 2010 20:35:03 -0000 1.12.2.13 +++ includes/content.inc 5 Oct 2010 20:28:08 -0000 @@ -69,11 +69,13 @@ function ctools_content_process(&$plugin else { $type = array( 'title' => $plugin['title'], - 'description' => $plugin['description'], 'icon' => $plugin['icon'], 'category' => $plugin['category'], ); + if (isset($plugin['description'])) { + $type['description'] = $plugin['description']; + } if (isset($plugin['required context'])) { $type['required context'] = $plugin['required context']; }