Index: modules/node/node.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v
retrieving revision 1.33
diff -u -r1.33 node.pages.inc
--- modules/node/node.pages.inc	22 Aug 2008 12:38:02 -0000	1.33
+++ modules/node/node.pages.inc	30 Aug 2008 23:26:31 -0000
@@ -434,11 +434,11 @@
   node_save($node);
   $node_link = l(t('view'), 'node/' . $node->nid);
   $watchdog_args = array('@type' => $node->type, '%title' => $node->title);
-  $t_args = array('@type' => node_get_types('name', $node), '%title' => $node->title);
+  $t_args = array('@type' => node_get_types('name', $node), '%title' => $node->title, '!node_add' => l(t('Add a new ') . $node->type, 'node/add/'. $node->type));
 
   if ($insert) {
     watchdog('content', '@type: added %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link);
-    drupal_set_message(t('@type %title has been created.', $t_args));
+    drupal_set_message(t('@type %title has been created.  !node_add.', $t_args));
   }
   else {
     watchdog('content', '@type: updated %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link);