Changeset 52205 for trunk/src/wp-includes/comment.php
- Timestamp:
- 11/18/2021 01:55:36 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment.php (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r52029 r52205 1489 1489 * @since 4.9.0 Added the `$comment` parameter. 1490 1490 * 1491 * @param int $comment_id The comment ID.1491 * @param string $comment_id The comment ID as a numeric string. 1492 1492 * @param WP_Comment $comment The comment to be deleted. 1493 1493 */ … … 1517 1517 * @since 4.9.0 Added the `$comment` parameter. 1518 1518 * 1519 * @param int $comment_id The comment ID.1519 * @param string $comment_id The comment ID as a numeric string. 1520 1520 * @param WP_Comment $comment The deleted comment. 1521 1521 */ … … 1563 1563 * @since 4.9.0 Added the `$comment` parameter. 1564 1564 * 1565 * @param int $comment_id The comment ID.1565 * @param string $comment_id The comment ID as a numeric string. 1566 1566 * @param WP_Comment $comment The comment to be trashed. 1567 1567 */ … … 1580 1580 * @since 4.9.0 Added the `$comment` parameter. 1581 1581 * 1582 * @param int $comment_id The comment ID.1582 * @param string $comment_id The comment ID as a numeric string. 1583 1583 * @param WP_Comment $comment The trashed comment. 1584 1584 */ … … 1611 1611 * @since 4.9.0 Added the `$comment` parameter. 1612 1612 * 1613 * @param int $comment_id The comment ID.1613 * @param string $comment_id The comment ID as a numeric string. 1614 1614 * @param WP_Comment $comment The comment to be untrashed. 1615 1615 */ … … 1631 1631 * @since 4.9.0 Added the `$comment` parameter. 1632 1632 * 1633 * @param int $comment_id The comment ID.1633 * @param string $comment_id The comment ID as a numeric string. 1634 1634 * @param WP_Comment $comment The untrashed comment. 1635 1635 */ … … 1710 1710 * @since 4.9.0 Added the `$comment` parameter. 1711 1711 * 1712 * @param int $comment_id The comment ID.1712 * @param string $comment_id The comment ID as a numeric string. 1713 1713 * @param WP_Comment $comment The comment to be unmarked as spam. 1714 1714 */ … … 1730 1730 * @since 4.9.0 Added the `$comment` parameter. 1731 1731 * 1732 * @param int $comment_id The comment ID.1732 * @param string $comment_id The comment ID as a numeric string. 1733 1733 * @param WP_Comment $comment The comment unmarked as spam. 1734 1734 */ … … 1864 1864 * @since 2.7.0 1865 1865 * 1866 * @param int $comment_ID The comment ID.1866 * @param string $comment_ID The comment ID as a numeric string. 1867 1867 * @param WP_Comment $comment Comment object. 1868 1868 */ … … 2434 2434 * @since 1.5.0 2435 2435 * 2436 * @param int $comment_id Comment ID.2436 * @param string $comment_id Comment ID as a numeric string. 2437 2437 * @param string $comment_status Current comment status. Possible values include 2438 2438 * 'hold', '0', 'approve', '1', 'spam', and 'trash'.
Note: See TracChangeset
for help on using the changeset viewer.