Add SMS to the list of allowed protocols.
This commit expands the list of allowed protocols. It adds the `sms://` which can be used to open meessaging clients for mobile users. Props rilwis, kraftbj Fixes #39415 Built from https://develop.svn.wordpress.org/trunk@46172 git-svn-id: http://core.svn.wordpress.org/trunk@45984 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
44b49c6fc3
commit
471cf58049
|
@ -5983,6 +5983,7 @@ function send_frame_options_header() {
|
||||||
* @since 3.3.0
|
* @since 3.3.0
|
||||||
* @since 4.3.0 Added 'webcal' to the protocols array.
|
* @since 4.3.0 Added 'webcal' to the protocols array.
|
||||||
* @since 4.7.0 Added 'urn' to the protocols array.
|
* @since 4.7.0 Added 'urn' to the protocols array.
|
||||||
|
* @since 5.3.0 Added 'sms' to the protocols array.
|
||||||
*
|
*
|
||||||
* @see wp_kses()
|
* @see wp_kses()
|
||||||
* @see esc_url()
|
* @see esc_url()
|
||||||
|
@ -5991,15 +5992,15 @@ function send_frame_options_header() {
|
||||||
*
|
*
|
||||||
* @return string[] Array of allowed protocols. Defaults to an array containing 'http', 'https',
|
* @return string[] Array of allowed protocols. Defaults to an array containing 'http', 'https',
|
||||||
* 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet',
|
* 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet',
|
||||||
* 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal', and 'urn'. This covers
|
* 'mms', 'rtsp', 'sms', 'svn', 'tel', 'fax', 'xmpp', 'webcal', and 'urn'.
|
||||||
* all common link protocols, except for 'javascript' which should not be
|
* This covers all common link protocols, except for 'javascript' which should not
|
||||||
* allowed for untrusted users.
|
* be allowed for untrusted users.
|
||||||
*/
|
*/
|
||||||
function wp_allowed_protocols() {
|
function wp_allowed_protocols() {
|
||||||
static $protocols = array();
|
static $protocols = array();
|
||||||
|
|
||||||
if ( empty( $protocols ) ) {
|
if ( empty( $protocols ) ) {
|
||||||
$protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal', 'urn' );
|
$protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'sms', 'svn', 'tel', 'fax', 'xmpp', 'webcal', 'urn' );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! did_action( 'wp_loaded' ) ) {
|
if ( ! did_action( 'wp_loaded' ) ) {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-46171';
|
$wp_version = '5.3-alpha-46172';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue