Changeset 5710 for sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-dropin.php
- Timestamp:
- 07/20/2017 08:56:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-dropin.php
r5695 r5710 114 114 /** 115 115 * Update the necessary meta data when editing a topic created before 116 * 2017-07- 17, as those topics can have potentially inaccurate data.116 * 2017-07-21, as those topics can have potentially inaccurate data. 117 117 * 118 118 * @see https://meta.trac.wordpress.org/ticket/1971 … … 122 122 */ 123 123 function update_old_topic_meta( $topic_id ) { 124 // Only run on topics older than 2017-07- 17.125 if ( get_post_field( 'post_date', $topic_id ) >= '2017-07- 17' ) {124 // Only run on topics older than 2017-07-21. 125 if ( get_post_field( 'post_date', $topic_id ) >= '2017-07-21' ) { 126 126 return; 127 127 }
Note: See TracChangeset
for help on using the changeset viewer.