Index: wp-includes/media.php
===================================================================
--- wp-includes/media.php	(revision 24001)
+++ wp-includes/media.php	(working copy)
@@ -2414,16 +2414,18 @@
 	if ( ! empty( $medias ) ) {
 		$media = reset( $medias );
 		$sizes = get_intermediate_image_sizes();
+		$sizes[] = 'full'; // Add original image source.
 
 		$urls = array();
 		foreach ( $sizes as $size ) {
 			$image = wp_get_attachment_image_src( $media->ID, $size );
-			if ( $image ) {
+			if ( $image )
 				$urls[] = reset( $image );
-				$urls[] = get_attachment_link( $media->ID );
-			}
 		}
 
+		// Add media permalink.
+		$urls[] = get_attachment_link( $media->ID );
+
 		$count = 1;
 		$matches = array();
 		$content = $post->post_content;
