Changeset 45611 for trunk/src/wp-includes/comment.php
- Timestamp:
- 07/09/2019 05:44:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r45590 r45611 2609 2609 $quote = ( $pingback_link_offset_dquote ) ? '"' : '\''; 2610 2610 $pingback_link_offset = ( $quote == '"' ) ? $pingback_link_offset_dquote : $pingback_link_offset_squote; 2611 $pingback_href_pos = @strpos( $contents, 'href=', $pingback_link_offset );2611 $pingback_href_pos = strpos( $contents, 'href=', $pingback_link_offset ); 2612 2612 $pingback_href_start = $pingback_href_pos + 6; 2613 $pingback_href_end = @strpos( $contents, $quote, $pingback_href_start );2613 $pingback_href_end = strpos( $contents, $quote, $pingback_href_start ); 2614 2614 $pingback_server_url_len = $pingback_href_end - $pingback_href_start; 2615 2615 $pingback_server_url = substr( $contents, $pingback_href_start, $pingback_server_url_len ); … … 2809 2809 2810 2810 if ( $pingback_server_url ) { 2811 @set_time_limit( 60 );2811 set_time_limit( 60 ); 2812 2812 // Now, the RPC call 2813 2813 $pagelinkedfrom = get_permalink( $post );
Note: See TracChangeset
for help on using the changeset viewer.