Index: site-new.php
===================================================================
--- site-new.php	(revision 18664)
+++ site-new.php	(working copy)
@@ -82,7 +82,7 @@
 		$content_mail = sprintf( __( "New site created by %1s\n\nAddress: http://%2s\nName: %3s"), $current_user->user_login , $newdomain . $path, stripslashes( $title ) );
 		wp_mail( get_site_option('admin_email'), sprintf( __( '[%s] New Site Created' ), $current_site->site_name ), $content_mail, 'From: "Site Admin" <' . get_site_option( 'admin_email' ) . '>' );
 		wpmu_welcome_notification( $id, $user_id, $password, $title, array( 'public' => 1 ) );
-		wp_redirect( add_query_arg( array('update' => 'added'), 'site-new.php' ) );
+		wp_redirect( add_query_arg( array( 'update' => 'added', 'site_id' => $id ), 'site-new.php' ) );
 		exit;
 	} else {
 		wp_die( $id->get_error_message() );
@@ -92,7 +92,7 @@
 if ( isset($_GET['update']) ) {
 	$messages = array();
 	if ( 'added' == $_GET['update'] )
-		$messages[] = __('Site added.');
+		$messages[] = __('Site added.') . ' <a href="' . esc_url( get_admin_url( $_GET['site_id'] ) ) . '">' . __( 'Visit Dashboard' ) . '</a> or <a href="site-info.php?id=' . $_GET['site_id'] . '">' . __( 'Edit Site' ) . '</a>';
 }
 
 $title = __('Add New Site');
