1
0
mirror of https://github.com/WordPress/WordPress.git synced 2025-01-13 03:40:45 +01:00

Add xmpp to allowed protocols. props ethitter, fixes .

git-svn-id: http://core.svn.wordpress.org/trunk@21826 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-09-12 15:47:34 +00:00
parent 9f6fe3c4ff
commit e4c21210aa

View File

@ -3603,7 +3603,7 @@ function wp_allowed_protocols() {
static $protocols; static $protocols;
if ( empty( $protocols ) ) { if ( empty( $protocols ) ) {
$protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax' ); $protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp' );
$protocols = apply_filters( 'kses_allowed_protocols', $protocols ); $protocols = apply_filters( 'kses_allowed_protocols', $protocols );
} }