Mark validate_email() with _deprecated_function(). Props ShaneF. fixes #11745

git-svn-id: http://svn.automattic.com/wordpress/trunk@12868 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-27 13:58:29 +00:00
parent 15579ed49a
commit 4d5e716f1c
1 changed files with 1 additions and 0 deletions

View File

@ -129,6 +129,7 @@ function is_main_blog() {
* @deprecated 3.0
*/
function validate_email( $email, $check_domain = true) {
_deprecated_function( __FUNCTION__, '3.0', 'is_email()' );
return is_email( $email, $check_domain );
}