- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/wp-includes/pluggable.php
r5440 r5714 157 157 endif; 158 158 159 if ( !function_exists( 'wp_mail') ) :159 if ( !function_exists( 'wp_mail' ) ) : 160 160 function wp_mail($to, $subject, $message, $headers = '') { 161 161 global $phpmailer; … … 169 169 $mail = compact('to', 'subject', 'message', 'headers'); 170 170 $mail = apply_filters('wp_mail', $mail); 171 extract($mail );171 extract($mail, EXTR_SKIP); 172 172 173 173 if ( $headers == '' ) { … … 224 224 function wp_login($username, $password, $already_md5 = false) { 225 225 global $wpdb, $error; 226 227 $username = sanitize_user($username); 226 228 227 229 if ( '' == $username )
Note: See TracChangeset
for help on using the changeset viewer.