Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.178
diff -u -p -r1.178 install.php
--- install.php	8 Jun 2009 04:33:35 -0000	1.178
+++ install.php	20 Jun 2009 16:46:53 -0000
@@ -800,7 +800,9 @@ function install_tasks($profile, $task) 
     $messages = drupal_set_message();
     $output = '<p>' . st('Congratulations, @drupal has been successfully installed.', array('@drupal' => drupal_install_profile_name())) . '</p>';
     $output .= '<p>' . (isset($messages['error']) ? st('Please review the messages above before continuing on to <a href="@url">your new site</a>.', array('@url' => url(''))) : st('You may now visit <a href="@url">your new site</a>.', array('@url' => url('')))) . '</p>';
-    $output .= '<p>' . st('For more information on configuring Drupal, please refer to the <a href="@help">help section</a>.', array('@help' => url('admin/help'))) . '</p>';
+    if (module_exists('help')) {
+      $output .= '<p>' . st('For more information on configuring Drupal, please refer to the <a href="@help">help section</a>.', array('@help' => url('admin/help'))) . '</p>';
+    }
     $task = 'done';
   }
 
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.1071
diff -u -p -r1.1071 node.module
--- modules/node/node.module	18 Jun 2009 21:19:02 -0000	1.1071
+++ modules/node/node.module	20 Jun 2009 16:47:00 -0000
@@ -2032,11 +2032,14 @@ function node_page_default() {
 
     $default_message = '<p>' . t('No front page content has been created yet.') . '</p>';
 
-    if (user_access('access administration pages')) {
-      $default_links = array (
-        l(t('Create content'), 'node/add'),
-        l(t('Change the default front page'), 'admin/settings/site-information'),
-      );
+    $default_links = array();
+    if (_node_add_access()) {
+      $default_links[] = l(t('Create content'), 'node/add');
+    }
+    if (user_access('administer site configuration')) {
+      $default_links[] = l(t('Change the default front page'), 'admin/settings/site-information');
+    }
+    if (!empty($default_links)) {
       $default_message .= theme('item_list', $default_links);
     }
 
