From 25829e05fa4956c231506687f55ca1148a453598 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 16 Jun 2015 23:18:25 +0000 Subject: [PATCH] Add line-wrapping to a long return description because readability in documentation is important. See [32797]. See #32421. Built from https://develop.svn.wordpress.org/trunk@32810 git-svn-id: http://core.svn.wordpress.org/trunk@32781 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 52c6831078..728bb1af61 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -4505,8 +4505,9 @@ function send_frame_options_header() { * * @staticvar array $protocols * - * @return array Array of allowed protocols. - * Defaults to 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal' + * @return array Array of allowed protocols. Defaults to an array containing 'http', 'https', + * 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', + * 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', and 'webcal'. */ function wp_allowed_protocols() { static $protocols = array(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 706c587dbf..624a0aa573 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32809'; +$wp_version = '4.3-alpha-32810'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.