Changeset 27801 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 03/28/2014 02:43:04 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/ms.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r27706 r27801 260 260 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 261 261 262 wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), get_option( 'blogname') ), $content );262 wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content ); 263 263 } 264 264 add_action( 'update_option_new_admin_email', 'update_option_new_admin_email', 10, 2 ); … … 329 329 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 330 330 331 wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), get_option( 'blogname') ), $content );331 wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content ); 332 332 $_POST['email'] = $current_user->user_email; 333 333 }
Note: See TracChangeset
for help on using the changeset viewer.