Changeset 5695
- Timestamp:
- 07/19/2017 02:52:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-dropin.php
r5693 r5695 146 146 */ 147 147 function update_old_reply_meta( $reply_id ) { 148 // Only run on topics older than 2017-07-17.148 // Only run on replies older than 2017-07-17. 149 149 if ( get_post_field( 'post_date', $reply_id ) >= '2017-07-17' ) { 150 return; 151 } 152 153 // Don't recaculate position for archived replies. 154 if ( 'archived' === get_post_status( $reply_id ) ) { 150 155 return; 151 156 }
Note: See TracChangeset
for help on using the changeset viewer.