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


git-svn-id: https://develop.svn.wordpress.org/trunk@46172 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jake Spurlock
2019-09-18 23:37:08 +00:00
parent 150b301ac0
commit 3d40bbeef5
2 changed files with 6 additions and 4 deletions
@@ -53,6 +53,7 @@ class Tests_Functions_AllowedProtocols extends WP_UnitTestCase {
array( 'rtsp', 'rtsp://media.example.com:554/wordpress/audiotrack' ), // RFC2326
array( 'svn', 'svn://core.svn.wordpress.org/' ),
array( 'tel', 'tel:+1-234-567-8910' ), // RFC3966
array( 'sms', 'sms:+1-234-567-8910' ), // RFC3966
array( 'fax', 'fax:+123.456.78910' ), // RFC2806/RFC3966
array( 'xmpp', 'xmpp://guest@example.com' ), // RFC5122
array( 'webcal', 'webcal://example.com/calendar.ics' ),