Make WordPress Core


Ignore:
Timestamp:
06/25/2020 12:04:05 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Reformat some long apply_filters_deprecated() and do_action_deprecated() calls for better readability.

See #49542.

File:
1 edited

Legend:

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

    r47808 r48167  
    373373         * @param int             $post_id   Attachment post ID.
    374374         */
    375         $saved = apply_filters_deprecated( 'wp_save_image_file', array( null, $filename, $image, $mime_type, $post_id ), '3.5.0', 'wp_save_image_editor_file' );
     375        $saved = apply_filters_deprecated(
     376            'wp_save_image_file',
     377            array( null, $filename, $image, $mime_type, $post_id ),
     378            '3.5.0',
     379            'wp_save_image_editor_file'
     380        );
    376381
    377382        if ( null !== $saved ) {
Note: See TracChangeset for help on using the changeset viewer.