Give feedback if username or password fields are empty. Props Nazgul. fixes #2901

git-svn-id: https://develop.svn.wordpress.org/trunk@3966 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-07-05 01:56:20 +00:00
parent 5f2832c56b
commit 3b51a5aa38
1 changed files with 4 additions and 0 deletions

View File

@ -207,6 +207,10 @@ default:
if ( $using_cookie )
$error = __('Your session has expired.');
}
} else if ( empty($user_login) ) {
$error = __('<strong>Error</strong>: The username field is empty.');
} else if ( empty($user_pass) ) {
$error = __('<strong>Error</strong>: The password field is empty.');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">