Changeset 5708 for trunk/wp-includes/comment.php
- Timestamp:
- 06/14/2007 10:45:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r5666 r5708 182 182 function wp_allow_comment($commentdata) { 183 183 global $wpdb; 184 extract($commentdata );184 extract($commentdata, EXTR_SKIP); 185 185 186 186 // Simple duplicate check … … 335 335 function wp_insert_comment($commentdata) { 336 336 global $wpdb; 337 extract($commentdata );337 extract($commentdata, EXTR_SKIP); 338 338 339 339 if ( ! isset($comment_author_IP) ) … … 470 470 471 471 // Now extract the merged array. 472 extract($commentarr );472 extract($commentarr, EXTR_SKIP); 473 473 474 474 $comment_content = apply_filters('comment_save_pre', $comment_content); … … 532 532 $pingback_href_original_pos = 27; 533 533 534 extract(parse_url($url) );534 extract(parse_url($url), EXTR_SKIP); 535 535 536 536 if ( !isset($host) ) // Not an URL. This should never happen.
Note: See TracChangeset
for help on using the changeset viewer.