diff --git a/plugins/content_types/page_content.inc b/plugins/content_types/page_content.inc
index e1a6476..6cb864b 100644
--- a/plugins/content_types/page_content.inc
+++ b/plugins/content_types/page_content.inc
@@ -43,6 +43,7 @@ function panels_everywhere_page_content_content_type_edit_form(&$form, &$form_st
 }
 
 function panels_everywhere_page_content_content_type_admin_info($subtype, $conf, $context) {
+  $block = new stdClass();
   $block->title = t('Main page content');
   $block->content = t('This will contain the content of page being viewed. In order to get the page title to be used as a Panel title, it is recommended that you set the "Title type" to "From pane" and then check "Panel title" in the dropdown menu for this pane.');
   return $block;
diff --git a/plugins/content_types/pane_header.inc b/plugins/content_types/pane_header.inc
index c8ba678..6e4359d 100644
--- a/plugins/content_types/pane_header.inc
+++ b/plugins/content_types/pane_header.inc
@@ -27,6 +27,7 @@ function panels_everywhere_pane_header_content_type_render($subtype, $conf, $pan
 }
 
 function panels_everywhere_pane_header_content_type_admin_info($subtype, $conf) {
+  $block = new stdClass();
   $block->title = t('Page header elements');
   $block->content = t('By default, this pane will contain the site name, logo and search box. Its actual contents can be easily themed by editing pane-header.tpl.php in the site theme.');
   return $block;
diff --git a/plugins/content_types/pane_messages.inc b/plugins/content_types/pane_messages.inc
index 813999c..1df39c0 100644
--- a/plugins/content_types/pane_messages.inc
+++ b/plugins/content_types/pane_messages.inc
@@ -27,6 +27,7 @@ function panels_everywhere_pane_messages_content_type_render($subtype, $conf, $p
 }
 
 function panels_everywhere_pane_messages_content_type_admin_info($subtype, $conf) {
+  $block = new stdClass();
   $block->title = t('Page messages, tabs and help');
   $block->content = t('A general page messages block that includes tabs, messages and help. It is normally placed in the same region as your content. This can be easily modified by overriding pane-messages.tpl.php in your theme.');
   return $block;
diff --git a/plugins/content_types/pane_navigation.inc b/plugins/content_types/pane_navigation.inc
index be96acc..5c64b0d 100644
--- a/plugins/content_types/pane_navigation.inc
+++ b/plugins/content_types/pane_navigation.inc
@@ -22,6 +22,7 @@ function panels_everywhere_pane_navigation_content_type_render($subtype, $conf,
 }
 
 function panels_everywhere_pane_navigation_content_type_admin_info($subtype, $conf) {
+  $block = new stdClass();
   $block->title = t('Page primary navigation and breadcrumb');
   $block->content = t('A general page navigation block that includes primary links, secondary links and breadcrumb. This can be easily modified by overriding pane-navigation.tpl.php in your theme.');
   return $block;
