Oops. Forgot that we support a PHP version from 2007. Either that or I've been doing a lot of JS.

Props kovshenin. See [24789].

git-svn-id: https://develop.svn.wordpress.org/trunk@24792 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2013-07-24 06:36:29 +00:00
parent 8a54be6786
commit 77873dedcc
1 changed files with 2 additions and 2 deletions

View File

@ -918,7 +918,7 @@ function wp_audio_shortcode( $attr ) {
unset( $atts[$a] );
}
$attr_strings = [];
$attr_strings = array();
foreach ( $atts as $k => $v ) {
$attr_strings[] = $k . '="' . esc_attr( $v ) . '"';
}
@ -1056,7 +1056,7 @@ function wp_video_shortcode( $attr ) {
unset( $atts[$a] );
}
$attr_strings = [];
$attr_strings = array();
foreach ( $atts as $k => $v ) {
$attr_strings[] = $k . '="' . esc_attr( $v ) . '"';
}