Index: plugins/content_types/create.inc =================================================================== --- plugins/content_types/create.inc (revision 15) +++ plugins/content_types/create.inc (working copy) @@ -49,8 +49,9 @@ && user_access('administer content types')){ $row .= ' | ' . l(t('Configure'), 'admin/content/node-type/'.$object->type); } - - $create[] = $row; + if ($row) { + $create[] = $row; + } } // end if type }