Changeset 43571 for trunk/src/wp-includes/comment.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r43535 r43571 382 382 {$where} 383 383 GROUP BY comment_approved 384 ", ARRAY_A 384 ", 385 ARRAY_A 385 386 ); 386 387 … … 2521 2522 2522 2523 $response = wp_safe_remote_head( 2523 $url, array( 2524 $url, 2525 array( 2524 2526 'timeout' => 2, 2525 2527 'httpversion' => '1.0', … … 2542 2544 // Now do a GET since we're going to look in the html headers (and we're sure it's not a binary file) 2543 2545 $response = wp_safe_remote_get( 2544 $url, array( 2546 $url, 2547 array( 2545 2548 'timeout' => 2, 2546 2549 'httpversion' => '1.0', … … 2657 2660 $wpdb->prepare( 2658 2661 "UPDATE $wpdb->posts SET to_ping = TRIM(REPLACE(to_ping, %s, 2659 '')) WHERE ID = %d", $tb_ping, $post->ID 2662 '')) WHERE ID = %d", 2663 $tb_ping, 2664 $post->ID 2660 2665 ) 2661 2666 );
Note: See TracChangeset
for help on using the changeset viewer.