Changeset 27519
- Timestamp:
- 03/13/2014 03:41:53 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r27512 r27519 1470 1470 $fileurl = $$fallback; 1471 1471 $type = wp_check_filetype( $$fallback, wp_get_mime_types() ); 1472 $html .= sprintf( $source, $type['type'], esc_url( $$fallback ) ); 1472 $url = add_query_arg( '_', $instances, $$fallback ); 1473 $html .= sprintf( $source, $type['type'], esc_url( $url ) ); 1473 1474 } 1474 1475 } … … 1658 1659 $type = wp_check_filetype( $$fallback, wp_get_mime_types() ); 1659 1660 } 1660 $html .= sprintf( $source, $type['type'], esc_url( $$fallback ) ); 1661 $url = add_query_arg( '_', $instances, $$fallback ); 1662 $html .= sprintf( $source, $type['type'], esc_url( $url ) ); 1661 1663 } 1662 1664 }
Note: See TracChangeset
for help on using the changeset viewer.