Changes from branches/2.2/wp-includes/comment.php at r5714 to trunk/wp-includes/comment.php at r5119
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r5714 r5119 179 179 function wp_allow_comment($commentdata) { 180 180 global $wpdb; 181 extract($commentdata , EXTR_SKIP);181 extract($commentdata); 182 182 183 183 // Simple duplicate check … … 326 326 function wp_insert_comment($commentdata) { 327 327 global $wpdb; 328 extract($commentdata , EXTR_SKIP);328 extract($commentdata); 329 329 330 330 if ( ! isset($comment_author_IP) ) … … 458 458 459 459 // Now extract the merged array. 460 extract($commentarr , EXTR_SKIP);460 extract($commentarr); 461 461 462 462 $comment_content = apply_filters('comment_save_pre', $comment_content); … … 518 518 $pingback_href_original_pos = 27; 519 519 520 extract(parse_url($url) , EXTR_SKIP);520 extract(parse_url($url)); 521 521 522 522 if ( !isset($host) ) // Not an URL. This should never happen.
Note: See TracChangeset
for help on using the changeset viewer.