Ticket #32619: 32619.5.patch
File 32619.5.patch, 1.1 KB (added by , 9 years ago) |
---|
-
wp-includes/feed.php
264 264 * 265 265 * @since 2.5.0 266 266 * 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. 269 268 */ 270 269 function comment_guid($comment_id = null) { 271 270 echo esc_url( get_comment_guid($comment_id) ); … … 276 275 * 277 276 * @since 2.5.0 278 277 * 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. 281 279 * @return false|string false on failure or guid for comment on success. 282 280 */ 283 281 function get_comment_guid($comment_id = null) {