Changeset 38686
- Timestamp:
- 09/30/2016 01:14:54 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r38670 r38686 4955 4955 * @since 3.3.0 4956 4956 * @since 4.3.0 Added 'webcal' to the protocols array. 4957 * @since 4.7.0 Added 'urn' to the protocols array. 4957 4958 * 4958 4959 * @see wp_kses() … … 4963 4964 * @return array Array of allowed protocols. Defaults to an array containing 'http', 'https', 4964 4965 * 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 4965 * 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', and 'webcal'.4966 * 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal', and 'urn'. 4966 4967 */ 4967 4968 function wp_allowed_protocols() { … … 4969 4970 4970 4971 if ( empty( $protocols ) ) { 4971 $protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal' );4972 $protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal', 'urn' ); 4972 4973 4973 4974 /** -
trunk/tests/phpunit/tests/functions/allowedProtocols.php
r38685 r38686 57 57 array( 'xmpp', 'xmpp://guest@example.com' ), // RFC5122 58 58 array( 'webcal', 'webcal://example.com/calendar.ics' ), 59 array( 'urn', 'urn:uuid:6e8bc430-9c3a-11d9-9669-0800200c9a66' ), // RFC2141 59 60 ); 60 61 }
Note: See TracChangeset
for help on using the changeset viewer.