Changeset 9487
- Timestamp:
- 02/11/2020 04:06:27 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
r9469 r9487 689 689 690 690 /** 691 * Limits No Replies view to 21 days by default and hides resolved topics.691 * Limits No Replies view to 21 days by default and hides closed/resolved topics. 692 692 * 693 693 * @param array $args Array of query args for the view. … … 713 713 'compare' => '=' 714 714 ) ); 715 716 // Exclude closed/hidden/spam/etc topics. 717 $args['post_status'] = 'publish'; 715 718 716 719 return $args;
Note: See TracChangeset
for help on using the changeset viewer.