Issue status update for http://drupal.org/node/30716 Post a follow up: http://drupal.org/project/comments/add/30716 Project: Drupal Version: cvs Component: system.module Category: bug reports Priority: critical Assigned to: Anonymous Reported by: amanuel Updated by: amanuel Status: patch (ready to be committed) On admin/themes/settings, the "Display post information on" section does not appear on HEAD. this is due to a simple typo: $node_type shoulde be $node_types patch: --- system.module 2005-08-28 14:17:47.000000000 -0400 +++ system.module.fixed 2005-09-08 15:24:31.000000000 -0400 @@ -794,7 +794,7 @@ } // Toggle node display. - $node_type = module_invoke('node', 'get_types'); + $node_types = module_invoke('node', 'get_types'); if ($node_types) { $group = ''; foreach ($node_types as $type => $name) { amanuel