diff --git a/wp-includes/media.php b/wp-includes/media.php
index 4a9849d3ca..6d75910fb0 100644
a
|
b
|
function wp_get_attachment_image( $attachment_id, $size = 'thumbnail', $icon = f |
1129 | 1129 | */ |
1130 | 1130 | function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) { |
1131 | 1131 | $image = wp_get_attachment_image_src( $attachment_id, $size, $icon ); |
1132 | | return isset( $image['0'] ) ? $image['0'] : false; |
| 1132 | return isset( $image[0] ) ? $image[0] : false; |
1133 | 1133 | } |
1134 | 1134 | |
1135 | 1135 | /** |