Changeset 34042 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 09/11/2015 06:20:56 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r33968 r34042 1286 1286 * @since 2.3.0 1287 1287 * 1288 * @param int $comment_id Optional. Comment ID.1288 * @param int|WP_Comment $comment_id Optional. Comment ID or WP_Comment object. 1289 1289 * @return string|void The edit comment link URL for the given comment. 1290 1290 */ … … 1327 1327 } 1328 1328 1329 $link = '<a class="comment-edit-link" href="' . get_edit_comment_link( $comment ->comment_ID) . '">' . $text . '</a>';1329 $link = '<a class="comment-edit-link" href="' . get_edit_comment_link( $comment ) . '">' . $text . '</a>'; 1330 1330 1331 1331 /**
Note: See TracChangeset
for help on using the changeset viewer.