Changeset 7853 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-reports/classes/report/class-wordcamp-details.php
- Timestamp:
- 11/15/2018 01:35:26 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-reports/classes/report/class-wordcamp-details.php
r7851 r7853 184 184 array_keys( WordCamp_Admin::meta_keys( 'organizer' ) ), 185 185 array_keys( WordCamp_Admin::meta_keys( 'venue' ) ), 186 [ 187 '_venue_coordinates', 188 '_venue_city', 189 '_venue_state', 190 '_venue_country_code', 191 '_venue_country_name', 192 '_venue_zip', 193 ] 186 WordCamp_Admin::get_venue_address_meta_keys() 194 187 ); 195 188 } … … 294 287 } 295 288 296 $meta_keys = array_merge( array_keys( WordCamp_Admin::meta_keys( 'all' ) ), [ 297 '_venue_coordinates', 298 '_venue_city', 299 '_venue_state', 300 '_venue_country_code', 301 '_venue_country_name', 302 '_venue_zip', 303 ] ); 289 $meta_keys = array_merge( 290 array_keys( WordCamp_Admin::meta_keys( 'all' ) ), 291 WordCamp_Admin::get_venue_address_meta_keys() 292 ); 304 293 305 294 return $meta_keys;
Note: See TracChangeset
for help on using the changeset viewer.