? .DS_Store ? node-content_type_overview-302120-16.patch ? node-content_type_overview-302120-19.patch ? vertical-tabs-323112-10.patch ? vertical-tabs-323112-8.patch ? vertical-tabs.patch ? modules/book/book.js ? sites/default/files ? sites/default/settings.php Index: modules/node/content_types.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v retrieving revision 1.58 diff -u -p -r1.58 content_types.inc --- modules/node/content_types.inc 8 Oct 2008 03:27:56 -0000 1.58 +++ modules/node/content_types.inc 1 Nov 2008 02:26:19 -0000 @@ -12,18 +12,14 @@ function node_overview_types() { $types = node_get_types(); $names = node_get_types('names'); - $header = array(t('Name'), t('Type'), t('Description'), array('data' => t('Operations'), 'colspan' => '2')); + $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => '2')); $rows = array(); foreach ($names as $key => $name) { $type = $types[$key]; if (node_hook($type, 'form')) { $type_url_str = str_replace('_', '-', $type->type); - $row = array( - check_plain($name), - check_plain($type->type), - filter_xss_admin($type->description), - ); + $row = array(theme('node_admin_overview', $name, $type)); // Set the edit column. $row[] = array('data' => l(t('edit'), 'admin/build/node-type/' . $type_url_str)); @@ -45,6 +41,13 @@ function node_overview_types() { return theme('table', $header, $rows); } +function theme_node_admin_overview($name, $type) { + $output = check_plain($name); + $output .= ' (Machine name: ' . check_plain($type->type) . ')'; + $output .= '