Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r12823 r16377  
    202202
    203203    if ( $filepath && file_exists($filepath) ) {
    204         if ( 'full' != $size && ( $data = image_get_intermediate_size($post_id, $size) ) )
    205             $filepath = path_join( dirname($filepath), $data['file'] );
     204        if ( 'full' != $size && ( $data = image_get_intermediate_size($post_id, $size) ) ) {
     205            $filepath = apply_filters('load_image_to_edit_filesystempath', path_join( dirname($filepath), $data['file'] ), $post_id, $size);
     206        }
    206207    } elseif ( WP_Http_Fopen::test() ) {
    207         $filepath = wp_get_attachment_url($post_id);
     208        $filepath = apply_filters('load_image_to_edit_attachmenturl', wp_get_attachment_url($post_id) , $post_id, $size);
    208209    }
    209210
     
    422423    $backup_sizes = get_post_meta( $post_id, '_wp_attachment_backup_sizes', true );
    423424    $restored = false;
    424     $msg = '';
     425    $msg = new stdClass;
    425426
    426427    if ( !is_array($backup_sizes) ) {
     
    493494
    494495function wp_save_image($post_id) {
    495     $return = '';
     496    $return = new stdClass;
    496497    $success = $delete = $scaled = $nocrop = false;
    497498    $post = get_post($post_id);
Note: See TracChangeset for help on using the changeset viewer.