Changeset 2839
- Timestamp:
- 03/28/2016 11:21:32 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/applications/wordcamp.php
r2838 r2839 198 198 add_post_meta( $post_id, '_status_change', array( 199 199 'timestamp' => time(), 200 'user_id' => $user->ID, // todo check if WP_User first200 'user_id' => is_a( $user, 'WP_User' ) ? $user->ID : 0, 201 201 'message' => sprintf( '%s -> %s', 'Application', $statues[ WCPT_DEFAULT_STATUS ] ), 202 202 ) );
Note: See TracChangeset
for help on using the changeset viewer.