mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
wp_extract_urls() needs to also grab URLs with query strings and hashes.
Updates unit test. Props hauvong, dlh. Fixes #29314. git-svn-id: https://develop.svn.wordpress.org/trunk@29756 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -421,7 +421,9 @@ class Tests_Functions extends WP_UnitTestCase {
|
||||
'http://türkiye.icom.museum',
|
||||
'http://украина.icom.museum',
|
||||
'http://việtnam.icom.museum',
|
||||
'ftp://127.0.0.1/'
|
||||
'ftp://127.0.0.1/',
|
||||
'http://www.woo.com/video?v=exvUH2qKLTU',
|
||||
'http://taco.com?burrito=enchilada#guac'
|
||||
);
|
||||
|
||||
$blob ="
|
||||
@@ -481,6 +483,9 @@ class Tests_Functions extends WP_UnitTestCase {
|
||||
http://украина.icom.museum
|
||||
http://việtnam.icom.museum
|
||||
ftp://127.0.0.1/
|
||||
http://www.woo.com/video?v=exvUH2qKLTU
|
||||
|
||||
http://taco.com?burrito=enchilada#guac
|
||||
";
|
||||
|
||||
$urls = wp_extract_urls( $blob );
|
||||
|
||||
Reference in New Issue
Block a user