Incorrect post_submitbox_misc_actions usage
-
In /revisionary/admin/PostEditSubmitMetabox.php you call
do_action('post_submitbox_misc_actions');
however it should be
do_action('post_submitbox_misc_actions', $post);
as per wp-admin/includes/meta-boxes.php which passes a WP_Post object as an argument.Without the argument passed you’re potentially causing errors in third party plugins and themes that make use of this action.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Incorrect post_submitbox_misc_actions usage’ is closed to new replies.