Changeset 7466
- Timestamp:
- 03/21/2008 11:21:27 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
wp-admin/edit-attachment-rows.php (modified) (1 diff)
-
wp-admin/includes/media.php (modified) (3 diffs)
-
wp-admin/wp-admin.css (modified) (1 diff)
-
wp-includes/js/swfupload/handlers.js (modified) (1 diff)
-
wp-includes/media.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-attachment-rows.php
r7427 r7466 44 44 case 'icon': 45 45 ?> 46 <td class="media-icon"><?php echo wp_get_attachment_link($post->ID, array( 60, 40), false, true); ?></td>46 <td class="media-icon"><?php echo wp_get_attachment_link($post->ID, array(80, 60), false, true); ?></td> 47 47 <?php 48 48 // TODO -
trunk/wp-admin/includes/media.php
r7446 r7466 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).'"' : ''; … … 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); … … 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 -
trunk/wp-admin/wp-admin.css
r7428 r7466 503 503 504 504 td.media-icon img { 505 max-width: 60px;506 max-height: 40px;505 max-width: 80px; 506 max-height: 60px; 507 507 } 508 508 -
trunk/wp-includes/js/swfupload/handlers.js
r7406 r7466 92 92 } 93 93 94 // Vanish it. 94 95 jQuery('#media-item-' + this.id + ' .filename:empty').remove(); 95 96 jQuery('#media-item-' + this.id + ' .filename').append(' <span class="file-error">'+swfuploadL10n.deleted+'</span>').siblings('a.toggle').remove(); 96 jQuery('#media-item-' + this.id + ' .describe').slideUp(500, function(){jQuery(this).parents('.media-item').slideUp(1500,function(){jQuery(this).remove();updateMediaForm();})}).end.remove(); 97 jQuery('#media-item-' + this.id).children('.describe').css({backgroundColor:'#fff'}).end() 98 .animate({backgroundColor:'#ffc0c0'}, {queue:false,duration:50}) 99 .animate({minHeight:0,height:36,}, 400, null, function(){jQuery(this).children('.describe').remove()}) 100 .animate({backgroundColor:'#fff'}, 400) 101 .animate({height:0}, 800, null, function(){jQuery(this).remove();updateMediaForm();}); 97 102 98 103 return; 99 // Vanish it.100 item.slideToggle(300,function(){jQuery(this).remove();if(jQuery('.media-item').length==0)jQuery('.insert-gallery').hide();updateMediaForm();});101 104 } 102 105 -
trunk/wp-includes/media.php
r7444 r7466 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 );
Note: See TracChangeset
for help on using the changeset viewer.