Make WordPress Core

Ticket #23964: 23964.4.diff

File 23964.4.diff, 1.1 KB (added by wonderboymusic, 12 years ago)
  • wp-admin/js/post-formats.js

    diff --git wp-admin/js/post-formats.js wp-admin/js/post-formats.js
    index 4c9e0ec..00ca966 100644
    window.wp = window.wp || {}; 
    151151                                        // show one preview at a time
    152152                                        mediaPreview(attachment);
    153153                                } else {
    154                                         html = wp.media.string.image({}, attachment);
     154                                        html = wp.media.string.image({size: 'full'}, attachment);
    155155                                        // set the hidden input's value
    156156                                        $field.val(html);
    157157                                        $('#image-preview').remove();
  • wp-includes/media.php

    diff --git wp-includes/media.php wp-includes/media.php
    index bd52867..81c3c4b 100644
    function get_the_post_format_image( $attached_size = 'full', &$post = null ) { 
    24162416                else
    24172417                        $image = $meta['image'];
    24182418
    2419                 $post->format_content = sprintf( $link_fmt, $image );
     2419                if ( false === strpos( $image, '<a ' ) )
     2420                        $post->format_content = sprintf( $link_fmt, $image );
     2421                else
     2422                        $post->format_content = $image;
    24202423                return $post->format_content;
    24212424        }
    24222425
    function attachment_url_to_postid( $url ) { 
    25082511        }
    25092512
    25102513        return 0;
    2511 }
    2512  No newline at end of file
     2514}