Make WordPress Core


Ignore:
Timestamp:
09/22/2008 08:21:10 PM (16 years ago)
Author:
azaozz
Message:

phpDoc corrections for comment.php, props jacobsantos, fixes #7550

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment.php

    r8949 r8956  
    1414 * links exceeds the amount in the administration, then the check fails. If any
    1515 * 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.
    1620 *
    1721 * If the comment is a trackback and part of the blogroll, then the trackback is
     
    117121 * comment variable will be used, if it is set.
    118122 *
     123 * If the comment is empty, then the global comment variable will be used, if it
     124 * is set.
     125 *
    119126 * @since 2.0.0
    120127 * @uses $wpdb
     
    592599 *
    593600 * @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.
    595602 */
    596603function wp_delete_comment($comment_id) {
     
    728735 * @uses apply_filters() Calls 'pre_comment_author_email' hook on comment author's email address
    729736 *
    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.
    732739 */
    733740function wp_filter_comment($commentdata) {
     
    776783 * @uses wp_insert_comment() Does the actual comment insertion to the database.
    777784 *
    778  * @param array $commentdata Contains information on the comment
     785 * @param array $commentdata Contains information on the comment.
    779786 * @return int The ID of the comment after adding.
    780787 */
Note: See TracChangeset for help on using the changeset viewer.