In `WP_Posts_List_Table`, correct the type for `$comment_pending_count`.
See #11381. git-svn-id: https://develop.svn.wordpress.org/trunk@35223 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e4c9f97fb3
commit
0d4a7ee029
|
@ -10,7 +10,7 @@
|
||||||
class WP_Posts_List_Table extends WP_List_Table {
|
class WP_Posts_List_Table extends WP_List_Table {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the items should be displayed hierarchically or linearly
|
* Whether the items should be displayed hierarchically or linearly.
|
||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
* @var bool
|
* @var bool
|
||||||
|
@ -19,16 +19,16 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||||
protected $hierarchical_display;
|
protected $hierarchical_display;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the number of pending comments for each post
|
* Holds the number of pending comments for each post.
|
||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
* @var int
|
* @var array
|
||||||
* @access protected
|
* @access protected
|
||||||
*/
|
*/
|
||||||
protected $comment_pending_count;
|
protected $comment_pending_count;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the number of posts for this user
|
* Holds the number of posts for this user.
|
||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
* @var int
|
* @var int
|
||||||
|
|
Loading…
Reference in New Issue