From 4d5e716f1ca52f5a763f79491750385d5bd6e601 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 27 Jan 2010 13:58:29 +0000 Subject: [PATCH] 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 --- 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 5a343c065..42b0a0897 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 ); }