Index: wp-admin/link-manager.php
===================================================================
--- wp-admin/link-manager.php	(revision 3749)
+++ wp-admin/link-manager.php	(working copy)
@@ -90,6 +90,12 @@
 
 <h2><?php _e('Bookmark Management'); ?></h2>
 <p><?php _e('Here you add links to sites that you visit often and share them on your blog. When you have a list of links in your sidebar to other blogs, it&#8217;s called a &#8220;blogroll.&#8221;'); ?></p>
+<?php
+if ( 'all' == $cat_id )
+	$cat_id = '';
+$links = get_bookmarks("category=$cat_id&hide_invisible=0&orderby=$sqlorderby&hide_empty=0");
+if ($links) {
+?>
 <form id="cats" method="get" action="">
 <p>Currently showing 
 <?php $categories = get_categories("hide_empty=1&type=link"); ?>
@@ -128,10 +134,6 @@
 	</thead>
 	<tbody id="the-list">
 <?php
-if ( 'all' == $cat_id )
-	$cat_id = '';
-$links = get_bookmarks("category=$cat_id&hide_invisible=0&orderby=$sqlorderby&hide_empty=0");
-if ($links)
 	foreach ($links as $link) {
 		$link->link_name = wp_specialchars($link->link_name);
 		$link->link_description = wp_specialchars($link->link_description);
@@ -186,6 +188,9 @@
 <div id="ajax-response"></div>
 
 <p class="submit"><input type="submit" class="button" name="deletebookmarks" id="deletebookmarks" value="<?php _e('Delete Checked Bookmarks') ?> &raquo;" onclick="return confirm('<?php _e("You are about to delete these bookmarks permanently \\n  \'Cancel\' to stop, \'OK\' to delete.") ?>')" /></p>
+<?php } ?>
+
+<h3><a href="link-add.php"><?php _e('Create New Bookmark &raquo;'); ?></a></h3>
 </div>
 </form>
 
