Changeset 2810 for branches/plugin/bbp-themes/bbp-twentyten/user-edit.php
- Timestamp:
- 01/17/2011 05:26:05 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/user-edit.php
r2758 r2810 5 5 * 6 6 * @package bbPress 7 * @subpackage Theme s7 * @subpackage Theme 8 8 */ 9 9 … … 104 104 <?php 105 105 106 // Handle address change requests 106 107 $new_email = get_option( bbp_get_displayed_user_id() . '_new_email' ); 107 108 if ( $new_email && $new_email != bbp_get_displayed_user_field( 'user_email' ) ) : ?> … … 109 110 <span class="updated inline"> 110 111 111 <?php printf( __( 'There is a pending change of your e-mailto <code>%1$s</code>. <a href="%2$s">Cancel</a>', 'bbpress' ), $new_email['newemail'], esc_url( self_admin_url( 'user.php?dismiss=' . bbp_get_current_user_id() . '_new_email' ) ) ); ?>112 <?php printf( __( 'There is a pending email address change to <code>%1$s</code>. <a href="%2$s">Cancel</a>', 'bbpress' ), $new_email['newemail'], esc_url( self_admin_url( 'user.php?dismiss=' . bbp_get_current_user_id() . '_new_email' ) ) ); ?> 112 113 113 114 </span>
Note: See TracChangeset
for help on using the changeset viewer.