Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #22186, comment 52


Ignore:
Timestamp:
12/01/2012 12:41:35 AM (13 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22186, comment 52

    initial v1  
    44
    55I have a hook similar to this:
    6 
     6{{{
    77function my_func( $post, $attachment ){
    88    print '<pre>';
     
    1212}
    1313add_action('attachment_fields_to_save', 'my_func');
    14 
     14}}}
    1515which on WP older than 3.5-rc
    1616
    1717I receive this:
     18{{{
    1819Array
    1920(
     
    2627
    2728)
    28 
     29}}}
    2930RC gives me nothing.