Make WordPress Core


Ignore:
Timestamp:
04/14/2008 07:47:37 PM (18 years ago)
Author:
ryan
Message:

Pass size to image_send_to_editor filter. fies #6691 for 2.5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.5/wp-includes/media.php

    r7593 r7672  
    9999    $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.'" />';
    100100
    101     $html = apply_filters( 'image_send_to_editor', $html, $id, $alt, $title, $align, $url );
     101    $url = '';
     102    $html = apply_filters( 'image_send_to_editor', $html, $id, $alt, $title, $align, $url, $size );
    102103
    103104    return $html;
Note: See TracChangeset for help on using the changeset viewer.