Make WordPress Core


Ignore:
Timestamp:
03/21/2008 11:21:27 PM (18 years ago)
Author:
ryan
Message:

pretty delete animation, fix squashed icons and use 80x60 thumbs, add rel attrs to attachment links inserted from uploader. Props andy. see #5911

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/media.php

    r7446 r7466  
    5151function get_image_send_to_editor($id, $alt, $title, $align, $url='', $rel = false, $size='medium') {
    5252
    53         $html = get_image_tag($id, $alt, $title, $align, $rel, $size);
     53        $html = get_image_tag($id, $alt, $title, $align, $size);
    5454
    5555        $rel = $rel ? ' rel="attachment wp-att-'.attribute_escape($id).'"' : '';
     
    247247                $attachment = $_POST['attachments'][$send_id];
    248248                $html = $attachment['post_title'];
    249                 if ( !empty($attachment['url']) )
    250                         $html = "<a href='{$attachment['url']}'>$html</a>";
     249                if ( !empty($attachment['url']) ) {
     250                        if ( strpos($attachment['url'], 'attachment_id') || false !== strpos($attachment['url'], get_permalink($_POST['post_id'])) )
     251                                $rel = " rel='attachment wp-att-".attribute_escape($send_id)."'";
     252                        $html = "<a href='{$attachment['url']}'$rel>$html</a>";
     253                }
    251254                $html = apply_filters('media_send_to_editor', $html, $send_id, $attachment);
    252255                return media_send_to_editor($html);
     
    528531                        $size = 'medium';
    529532
    530                 return get_image_send_to_editor($attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, $rel, $size);
     533                return get_image_send_to_editor($attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, true, $size);
    531534        }
    532535
Note: See TracChangeset for help on using the changeset viewer.