From d58d7e815844240e0b3bbd868017b1e539c7f5d4 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sun, 2 Feb 2014 10:52:33 +0000 Subject: [PATCH] Update @return statement of wp_nonce_url(): The URL is escaped. props c3mdigital. see #4221. git-svn-id: https://develop.svn.wordpress.org/trunk@27070 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 2d06fc32bb..ae0ec09d17 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -1194,7 +1194,7 @@ function is_blog_installed() { * @param string $actionurl URL to add nonce action. * @param string $action Optional. Nonce action name. * @param string $name Optional. Nonce name. - * @return string URL with nonce action added. + * @return string Escaped URL with nonce action added. */ function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) { $actionurl = str_replace( '&', '&', $actionurl );