Make WordPress Core


Ignore:
Timestamp:
02/22/2007 01:52:00 AM (18 years ago)
Author:
ryan
Message:

Fix wp_delete_file action. Props filosofo. fixes #3655

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/custom-header.php

    r4818 r4910  
    287287        $file = get_attached_file( $_POST['attachment_id'] );
    288288        $medium = str_replace(basename($file), 'midsize-'.basename($file), $file);
    289         @unlink( $medium );
    290         apply_filters( 'wp_delete_file', $medium );
     289        @unlink( apply_filters( 'wp_delete_file', $medium ) );
    291290        wp_delete_attachment( $_POST['attachment_id'] );
    292291
Note: See TracChangeset for help on using the changeset viewer.