From 320b3751a3bc566b058d488f79f841a06a1045f0 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 7 Apr 2014 21:34:14 +0000 Subject: [PATCH] Add a missing `@since 3.9.0` to the PHPDoc for `wp_register_plugin_realpath()`. See #16953, #27700. Built from https://develop.svn.wordpress.org/trunk@28011 git-svn-id: http://core.svn.wordpress.org/trunk@27841 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/plugin.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-includes/plugin.php b/wp-includes/plugin.php index 7b404c231e..7eba1bbdb6 100644 --- a/wp-includes/plugin.php +++ b/wp-includes/plugin.php @@ -637,7 +637,11 @@ function plugin_basename( $file ) { /** * Register a plugin's real path. * - * This is used in {@see plugin_basename()} to resolve symlinked paths. + * This is used in plugin_basename() to resolve symlinked paths. + * + * @since 3.9.0 + * + * @see plugin_basename() * * @param string $file Known path to the file. * @return bool Whether the path was able to be registered.