mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-18 04:25:07 +00:00
Fix regex in function rss_enclosure(), fixes #9192
git-svn-id: http://svn.automattic.com/wordpress/trunk@10615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6d94947a44
commit
3b94be427f
@ -403,10 +403,10 @@ function rss_enclosure() {
|
|||||||
foreach ( (array) get_post_custom() as $key => $val) {
|
foreach ( (array) get_post_custom() as $key => $val) {
|
||||||
if ($key == 'enclosure') {
|
if ($key == 'enclosure') {
|
||||||
foreach ( (array) $val as $enc ) {
|
foreach ( (array) $val as $enc ) {
|
||||||
$enclosure = split("\n", $enc);
|
$enclosure = explode("\n", $enc);
|
||||||
|
|
||||||
//only get the the first element eg, audio/mpeg from 'audio/mpeg mpga mp2 mp3'
|
//only get the the first element eg, audio/mpeg from 'audio/mpeg mpga mp2 mp3'
|
||||||
$t = split('[ \t]', trim($enclosure[2]) );
|
$t = preg_split('/[ \t]/', trim($enclosure[2]) );
|
||||||
$type = $t[0];
|
$type = $t[0];
|
||||||
|
|
||||||
echo apply_filters('rss_enclosure', '<enclosure url="' . trim(htmlspecialchars($enclosure[0])) . '" length="' . trim($enclosure[1]) . '" type="' . $type . '" />' . "\n");
|
echo apply_filters('rss_enclosure', '<enclosure url="' . trim(htmlspecialchars($enclosure[0])) . '" length="' . trim($enclosure[1]) . '" type="' . $type . '" />' . "\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user