mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
Cast widget and height to int in WP_oEmbed:fetch() so we don't have to rely on providers.
git-svn-id: http://svn.automattic.com/wordpress/trunk@17995 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
81a5f821fb
commit
7ba7176d62
@ -158,8 +158,8 @@ class WP_oEmbed {
|
||||
function fetch( $provider, $url, $args = '' ) {
|
||||
$args = wp_parse_args( $args, wp_embed_defaults() );
|
||||
|
||||
$provider = add_query_arg( 'maxwidth', $args['width'], $provider );
|
||||
$provider = add_query_arg( 'maxheight', $args['height'], $provider );
|
||||
$provider = add_query_arg( 'maxwidth', (int) $args['width'], $provider );
|
||||
$provider = add_query_arg( 'maxheight', (int) $args['height'], $provider );
|
||||
$provider = add_query_arg( 'url', urlencode($url), $provider );
|
||||
|
||||
foreach( array( 'json', 'xml' ) as $format ) {
|
||||
|
Loading…
Reference in New Issue
Block a user