Ticket #7174: 7174.diff
| File 7174.diff, 1.1 kB (added by AndrewFrazier, 5 months ago) |
|---|
-
wp-admin/includes/upgrade.php
old new 881 881 function dbDelta($queries, $execute = true) { 882 882 global $wpdb; 883 883 884 // Sep erate individual queries into an array884 // Separate individual queries into an array 885 885 if( !is_array($queries) ) { 886 886 $queries = explode( ';', $queries ); 887 887 if('' == $queries[count($queries) - 1]) array_pop($queries); -
wp-includes/class-smtp.php
old new 249 249 * finializing the mail transaction. $msg_data is the message 250 250 * that is to be send with the headers. Each header needs to be 251 251 * on a single line followed by a <CRLF> with the message headers 252 * and the message body being sep erated by and additional <CRLF>.252 * and the message body being separated by and additional <CRLF>. 253 253 * 254 254 * Implements rfc 821: DATA <CRLF> 255 255 *
