mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-10 18:37:58 +01:00
Map 'all' to no status for get_comments() in the list table. See #21101.
git-svn-id: http://core.svn.wordpress.org/trunk@22081 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
65c83c659a
commit
b821458a03
@ -81,7 +81,8 @@ class WP_Comments_List_Table extends WP_List_Table {
|
|||||||
|
|
||||||
$status_map = array(
|
$status_map = array(
|
||||||
'moderated' => 'hold',
|
'moderated' => 'hold',
|
||||||
'approved' => 'approve'
|
'approved' => 'approve',
|
||||||
|
'all' => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
$args = array(
|
$args = array(
|
||||||
|
Loading…
Reference in New Issue
Block a user