Changeset 7986 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-event/tracker.php
- Timestamp:
- 12/17/2018 07:35:34 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-event/tracker.php
r7984 r7986 55 55 FROM {$wpdb->prefix}postmeta 56 56 WHERE 57 meta_key like '_status_change_log_$post_type%'57 meta_key like %s 58 58 AND 59 59 meta_value >= %d 60 60 GROUP BY post_id 61 61 ", 62 '_status_change_log_' . $post_type . '%', 62 63 $inactive_timestamp 63 64 ) … … 137 138 * Based on the event type passed, we will localize different data for Meetup and WordCamp events. 138 139 * 139 * @param string application_type Application type for the tracker table. Could be either `wordcamp` or `meetup`.140 * @param string $application_type Application type for the tracker table. Could be either `wordcamp` or `meetup`. 140 141 */ 141 142 function enqueue_scripts( $application_type ) { 142 global $post;143 144 143 wp_register_script( 145 144 'wpc-application-tracker',
Note: See TracChangeset
for help on using the changeset viewer.