From 29d92778637bec6d154cb4557f52a458d0c265ad Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 24 Jul 2006 15:54:57 +0000 Subject: Print "The blog you were looking for" properly (#98) git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@706 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-signup.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-signup.php b/wp-signup.php index bd978d2..656fe34 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -337,7 +337,11 @@ switch ($_POST['stage']) { signup_user( $blog_id ); if ($blog_id) { - printf(__("

The blog you were looking for, %1$s.%2$s doesn't exist but you can create it now!

"), $blog_id, $current_site->domain); + if( constant( "VHOST" ) == 'no' ) + $newblog = 'http://' . $current_site->domain . $current_site->path . $blog_id . '/'; + else + $newblog = 'http://' . $blog_id . '.' . $current_site->domain . $current_site->path; + printf(__("

The blog you were looking for, %s doesn't exist but you can create it now!

"), $newblog ); } break; } -- cgit