diff --git a/wp-includes/version.php b/wp-includes/version.php index d1b71966c4..5a8801060a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta2-35446'; +$wp_version = '4.4-beta2-35447'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-signup.php b/wp-signup.php index 824ba1a7f9..22c2e7c411 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -845,9 +845,15 @@ if ( $active_signup == 'none' ) { $newblog = get_blogaddress_by_name( $newblogname ); if ( $active_signup == 'blog' || $active_signup == 'all' ) - printf( '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', $newblog ); + /* translators: %s: site address */ + printf( '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', + '' . $newblog . '' + ); else - printf( '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', $newblog ); + /* translators: %s: site address */ + printf( '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', + '' . $newblog . '' + ); } break; }