Ticket #44723: 44723.diff
File 44723.diff, 565 bytes (added by , 6 years ago) |
---|
-
src/wp-includes/user.php
3666 3666 */ 3667 3667 public function __construct( $post ) { 3668 3668 $this->ID = $post->ID; 3669 $this->user_id = $post->post_author;3669 $this->user_id = (int) $post->post_author; 3670 3670 $this->email = $post->post_title; 3671 3671 $this->action_name = $post->post_name; 3672 3672 $this->status = $post->post_status;