diff --git wordcamp.org/public_html/wp-content/plugins/wc-post-types/wc-post-types.php wordcamp.org/public_html/wp-content/plugins/wc-post-types/wc-post-types.php
index dd19064..d6e02aa 100644
|
|
class WordCamp_Post_Types_Plugin { |
1549 | 1549 | $wporg_user = get_user_by( 'id', $user_id ); |
1550 | 1550 | |
1551 | 1551 | if ( $wporg_user ) |
1552 | | $wporg_username = $wporg_user->user_nicename; |
| 1552 | $wporg_username = $wporg_user->user_login; |
1553 | 1553 | ?> |
1554 | 1554 | |
1555 | 1555 | <?php wp_nonce_field( 'edit-speaker-info', 'wcpt-meta-speaker-info' ); ?> |
… |
… |
class WordCamp_Post_Types_Plugin { |
1578 | 1578 | $wporg_user = get_user_by( 'id', $user_id ); |
1579 | 1579 | |
1580 | 1580 | if ( $wporg_user ) |
1581 | | $wporg_username = $wporg_user->user_nicename; |
| 1581 | $wporg_username = $wporg_user->user_login; |
1582 | 1582 | ?> |
1583 | 1583 | |
1584 | 1584 | <?php wp_nonce_field( 'edit-organizer-info', 'wcpt-meta-organizer-info' ); ?> |
… |
… |
class WordCamp_Post_Types_Plugin { |
2356 | 2356 | $wporg_user = get_user_by( 'id', $user_id ); |
2357 | 2357 | |
2358 | 2358 | if ( $wporg_user ) { |
2359 | | echo esc_html( $wporg_user->user_nicename ); |
| 2359 | echo esc_html( $wporg_user->user_login ); |
2360 | 2360 | } |
2361 | 2361 | |
2362 | 2362 | break; |