--- modules/node/node.pages.inc	2009-04-15 09:28:08.000000000 -0400
+++ modules/node/node.pages.inc	2009-04-16 22:01:19.000000000 -0400
@@ -23,7 +23,13 @@ function node_add_page() {
   if (count($content) == 1) {
     $item = array_shift($content);
     drupal_goto($item['href']);
-  }
+	} else {
+		if (user_access('administer content types')) {
+  			foreach ($content as $key => $item) {
+  				$content[$key]['edit_href'] = str_replace('node/add', 'admin/build/node-type', $item['href']);
+  			}
+  		}
+	}
   return theme('node_add_list', $content);
 }
 
@@ -34,12 +40,12 @@ function node_add_page() {
  */
 function theme_node_add_list($content) {
   $output = '';
-
   if ($content) {
     $output = '<dl class="node-type-list">';
     foreach ($content as $item) {
-      $output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>';
-      $output .= '<dd>' . filter_xss_admin($item['description']) . '</dd>';
+    	$output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>';
+    	$output .= '<dd>' . filter_xss_admin($item['description']);
+    	$output .= $item['edit_href'] ? '&nbsp;<small>('.l(t('Edit Content Type'), $item['edit_href']).')</a></small></dd>' : '</dd>';
     }
     $output .= '</dl>';
   }
