Ticket #5911: 5911-rel.diff
| File 5911-rel.diff, 2.6 KB (added by , 18 years ago) |
|---|
-
wp-admin/includes/media.php
50 50 51 51 function get_image_send_to_editor($id, $alt, $title, $align, $url='', $rel = false, $size='medium') { 52 52 53 $html = get_image_tag($id, $alt, $title, $align, $ rel, $size);53 $html = get_image_tag($id, $alt, $title, $align, $size); 54 54 55 55 $rel = $rel ? ' rel="attachment wp-att-'.attribute_escape($id).'"' : ''; 56 56 … … 246 246 $send_id = (int) array_shift($keys); 247 247 $attachment = $_POST['attachments'][$send_id]; 248 248 $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 } 251 254 $html = apply_filters('media_send_to_editor', $html, $send_id, $attachment); 252 255 return media_send_to_editor($html); 253 256 } … … 527 530 else 528 531 $size = 'medium'; 529 532 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); 531 534 } 532 535 533 536 return $html; -
wp-includes/media.php
91 91 } 92 92 93 93 // return an <img src /> tag for the given image attachment, scaling it down if requested 94 function get_image_tag($id, $alt, $title, $align, $ rel = false, $size='medium') {94 function get_image_tag($id, $alt, $title, $align, $size='medium') { 95 95 96 96 list( $img_src, $width, $height ) = image_downsize($id, $size); 97 97 $hwstring = image_hwstring($width, $height); 98 98 99 $html = '<img src="'.attribute_escape($img_src).'" alt="'.attribute_escape($alt).'" title="'.attribute_escape($title).'" '.$hwstring.'class="align'.attribute_escape($align).' size-'.attribute_escape($size).' attachment wp-att-'.attribute_escape($id).'" />';99 $html = '<img src="'.attribute_escape($img_src).'" alt="'.attribute_escape($alt).'" title="'.attribute_escape($title).'" '.$hwstring.'class="align'.attribute_escape($align).' size-'.attribute_escape($size).' wp-image-'.$id.'" />'; 100 100 101 101 $html = apply_filters( 'image_send_to_editor', $html, $id, $alt, $title, $align, $url ); 102 102