Changeset 27801 for trunk/src/wp-admin/includes/class-wp-upgrader.php
- Timestamp:
- 03/28/2014 02:43:04 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/class-wp-upgrader.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-upgrader.php
r27673 r27801 2421 2421 $email = apply_filters( 'auto_core_update_email', $email, $type, $core_update, $result ); 2422 2422 2423 wp_mail( $email['to'], $email['subject'], $email['body'], $email['headers'] );2423 wp_mail( $email['to'], wp_specialchars_decode( $email['subject'] ), $email['body'], $email['headers'] ); 2424 2424 } 2425 2425 … … 2571 2571 $email = apply_filters( 'automatic_updates_debug_email', $email, $failures, $this->update_results ); 2572 2572 2573 wp_mail( $email['to'], $email['subject'], $email['body'], $email['headers'] );2573 wp_mail( $email['to'], wp_specialchars_decode( $email['subject'] ), $email['body'], $email['headers'] ); 2574 2574 } 2575 2575 }
Note: See TracChangeset
for help on using the changeset viewer.