- Timestamp:
- 08/27/2018 03:25:40 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-functions.php
r7625 r7635 85 85 $private_notes = get_post_meta( $event_id, '_note' ); 86 86 $status_changes = get_post_meta( $event_id, '_status_change' ); 87 $tag_changes = get_post_meta( $event_id, '_tags_log' ); 87 88 88 foreach ( array( 'note' => $private_notes, 'status_change' => $status_changes ) as $entry_type => $raw_entries ) {89 foreach ( array( 'note' => $private_notes, 'status_change' => $status_changes, 'tag_change' => $tag_changes ) as $entry_type => $raw_entries ) { 89 90 $entries = array_merge( process_raw_entries( $raw_entries, $entry_type ), $entries ); 90 91 } … … 120 121 } 121 122 122 usort( $entries, 'wcpt_sort_log_entries' );123 124 123 return $entries; 125 124 }
Note: See TracChangeset
for help on using the changeset viewer.