Make WordPress Core

Ticket #32619: 32619.5.patch

File 32619.5.patch, 1.1 KB (added by dimadin, 9 years ago)
  • wp-includes/feed.php

     
    264264 *
    265265 * @since 2.5.0
    266266 *
    267  * @param mixed  $id_or_email The Gravatar to retrieve. Accepts a user_id, gravatar md5 hash,
    268  *                            user email, WP_User object, WP_Post object, or WP_Comment object.
     267 * @param int|WP_Comment $comment_id Optional comment object or id. Defaults to global comment object.
    269268 */
    270269function comment_guid($comment_id = null) {
    271270        echo esc_url( get_comment_guid($comment_id) );
     
    276275 *
    277276 * @since 2.5.0
    278277 *
    279  * @param mixed  $id_or_email The Gravatar to retrieve. Accepts a user_id, gravatar md5 hash,
    280  *                            user email, WP_User object, WP_Post object, or WP_Comment object.
     278 * @param int|WP_Comment $comment_id Optional comment object or id. Defaults to global comment object.
    281279 * @return false|string false on failure or guid for comment on success.
    282280 */
    283281function get_comment_guid($comment_id = null) {