From 991237783d3a94bad3802ab65f6efc095dfff787 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 16 Jun 2015 23:17:16 +0000 Subject: [PATCH] Add line-wrapping to a long return description because readability in documentation is important. See [32797]. See #32421. git-svn-id: https://develop.svn.wordpress.org/trunk@32810 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 52c6831078..728bb1af61 100644 --- a/src/wp-includes/functions.php +++ b/src/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();