From 3d26edf1fe6afa515d11a9b465cd26a64688d4df Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 6 Nov 2013 10:16:55 +0000 Subject: [PATCH] Remove irrelevant @see references. props mt8.biz. fixes #25843. git-svn-id: https://develop.svn.wordpress.org/trunk@26022 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index cf6eacf1a0..754353878f 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -3730,7 +3730,6 @@ function __return_false() { * Useful for returning 0 to filters easily. * * @since 3.0.0 - * @see __return_zero() * @return int 0 */ function __return_zero() { @@ -3743,7 +3742,6 @@ function __return_zero() { * Useful for returning an empty array to filters easily. * * @since 3.0.0 - * @see __return_zero() * @return array Empty array */ function __return_empty_array() { @@ -3914,7 +3912,7 @@ function wp_allowed_protocols() { * Return a comma separated string of functions that have been called to get to the current point in code. * * @link http://core.trac.wordpress.org/ticket/19589 - * @since 3.4 + * @since 3.4.0 * * @param string $ignore_class A class to ignore all function calls within - useful when you want to just give info about the callee * @param int $skip_frames A number of stack frames to skip - useful for unwinding back to the source of the issue