From 2525f1169b0050b4eb0774e14173daf9e77d0f8c Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 27 Jan 2010 13:58:29 +0000 Subject: [PATCH] Mark validate_email() with _deprecated_function(). Props ShaneF. fixes #11745 git-svn-id: https://develop.svn.wordpress.org/trunk@12868 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/ms-deprecated.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/ms-deprecated.php b/wp-includes/ms-deprecated.php index 5a343c0656..42b0a08970 100644 --- a/wp-includes/ms-deprecated.php +++ b/wp-includes/ms-deprecated.php @@ -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 ); }