From e42084c513d54c5292941584aeff51f987ab961f Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 10 Sep 2007 16:15:47 +0000 Subject: You must enter an email address, fixes #383 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1049 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- index-install.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'index-install.php') diff --git a/index-install.php b/index-install.php index 2ce3868..0b37147 100644 --- a/index-install.php +++ b/index-install.php @@ -360,6 +360,8 @@ function step3() { if( strpos( $domain, '/' ) ) $domain = substr( $domain, 0, strpos( $domain, '/' ) ); $email = $wpdb->escape( $_POST[ 'email' ] ); + if( $email == '' ) + die( 'You must enter an email address!' ); $weblog_title = $wpdb->escape( $_POST[ 'weblog_title' ] ); // set up site tables -- cgit