Changeset 8956 for trunk/wp-includes/comment.php
- Timestamp:
- 09/22/2008 08:21:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r8949 r8956 14 14 * links exceeds the amount in the administration, then the check fails. If any 15 15 * of the parameter contents match the blacklist of words, then the check fails. 16 * 17 * If the number of links exceeds the amount in the administration, then the 18 * check fails. If any of the parameter contents match the blacklist of words, 19 * then the check fails. 16 20 * 17 21 * If the comment is a trackback and part of the blogroll, then the trackback is … … 117 121 * comment variable will be used, if it is set. 118 122 * 123 * If the comment is empty, then the global comment variable will be used, if it 124 * is set. 125 * 119 126 * @since 2.0.0 120 127 * @uses $wpdb … … 592 599 * 593 600 * @param int $comment_id Comment ID 594 * @return bool False if delete comment query failure, true on success 601 * @return bool False if delete comment query failure, true on success. 595 602 */ 596 603 function wp_delete_comment($comment_id) { … … 728 735 * @uses apply_filters() Calls 'pre_comment_author_email' hook on comment author's email address 729 736 * 730 * @param array $commentdata Contains information on the comment 731 * @return array Parsed comment information 737 * @param array $commentdata Contains information on the comment. 738 * @return array Parsed comment information. 732 739 */ 733 740 function wp_filter_comment($commentdata) { … … 776 783 * @uses wp_insert_comment() Does the actual comment insertion to the database. 777 784 * 778 * @param array $commentdata Contains information on the comment 785 * @param array $commentdata Contains information on the comment. 779 786 * @return int The ID of the comment after adding. 780 787 */
Note: See TracChangeset
for help on using the changeset viewer.