diff --git a/node_pane.module b/node_pane.module
index 7acf354..53c0bd4 100755
--- a/node_pane.module
+++ b/node_pane.module
@@ -26,7 +26,7 @@ function ctools_node_content_type_content_types($plugin) {
     $ctools_content_types[$name] = array(
       'title' => t('New @type', array('@type' => $node_type->name)),
       'description' => $node_type->description,
-      'category' => array(t('Content')),
+      'category' => t('Content'),
       'add form' => array(
         'ctools_node_content_type_add_form' => t('Add new @type', array('@type' => $node_type->name)),
         'ctools_node_content_type_edit_form' => array(
@@ -50,7 +50,7 @@ function ctools_node_content_type_content_types($plugin) {
       ),
     ),
     'edit form' => 'ctools_node_content_type_edit_form',
-    'category' => array(t('Content')),
+    'category' => t('Content'),
   );
 
   return $ctools_content_types;
