Changeset 2800
- Timestamp:
- 03/25/2016 09:51:08 AM (10 years ago)
- Location:
- sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt
- Files:
-
- 2 edited
-
applications/wordcamp.php (modified) (1 diff)
-
wcpt-wordcamp/wordcamp-admin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/applications/wordcamp.php
r2797 r2800 195 195 196 196 add_post_meta( $post_id, '_status_change', array( 197 'timestamp' => current_time( 'timestamp'),197 'timestamp' => time(), 198 198 'user_id' => $user->ID, 199 199 'message' => sprintf( '%s -> %s', 'Application', 'Draft' ), /// todo use get_status_name() when it's ready // todo update with new default status -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-admin.php
r2784 r2800 213 213 214 214 add_post_meta( $post_id, '_note', array( 215 'timestamp' => current_time( 'timestamp'),215 'timestamp' => time(), 216 216 'user_id' => get_current_user_id(), 217 217 'message' => $new_note_message, … … 624 624 625 625 add_post_meta( $post->ID, '_status_change', array( 626 'timestamp' => current_time( 'timestamp'),626 'timestamp' => time(), 627 627 'user_id' => get_current_user_id(), 628 628 'message' => sprintf( '%s -> %s', $old_status, $new_status ), /// todo use get_status_name() when it's ready
Note: See TracChangeset
for help on using the changeset viewer.