Wordpress - WordPress Hooks System
Why does the following code not pass the second argument to
my_function?add_action('save_post', 'my_function', 10, 1);
function my_function($post_id, $post) {
// code
}