Changeset 5515
- Timestamp:
- 09/12/2014 04:52:06 AM (12 years ago)
- Location:
- trunk/src/includes
- Files:
-
- 2 edited
-
replies/functions.php (modified) (2 diffs)
-
topics/functions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/replies/functions.php
r5506 r5515 1834 1834 * @param int $reply_id Reply id 1835 1835 * @uses bbp_get_reply() To get the reply 1836 * @uses bbp_get_pending_status_id() To get the pending status id 1836 1837 * @uses do_action() Calls 'bbp_approve_reply' with the reply id 1837 /* @uses add_post_meta() To add the previous status to a meta1838 /* @uses delete_post_meta() To delete the previous status meta1838 * @uses bbp_get_public_status_id() To get the public status id 1839 * @uses remove_action() To remove the auto save post revision action 1839 1840 * @uses wp_update_post() To update the reply with the new status 1840 1841 * @uses do_action() Calls 'bbp_approved_reply' with the reply id … … 1880 1881 * @param int $reply_id Reply id 1881 1882 * @uses bbp_get_reply() To get the reply 1883 * @uses bbp_get_pending_status_id() To get the pending status id 1882 1884 * @uses do_action() Calls 'bbp_unapprove_reply' with the reply id 1883 /* @uses get_post_meta() To get the previous status 1884 /* @uses delete_post_meta() To delete the previous status meta 1885 * @uses remove_action() To remove the auto save post revision action 1885 1886 * @uses wp_update_post() To update the reply with the new status 1886 1887 * @uses do_action() Calls 'bbp_unapproved_reply' with the reply id -
trunk/src/includes/topics/functions.php
r5503 r5515 1691 1691 bbp_update_reply_forum_id( $reply->ID, bbp_get_topic_forum_id( $destination_topic->ID ) ); 1692 1692 1693 // Adjust reply position 1694 bbp_update_reply_position( $reply->ID ); 1693 // Adjust reply position 1694 bbp_update_reply_position( $reply->ID ); 1695 1695 1696 1696 // Adjust reply to values … … 3186 3186 * @param int $topic_id Topic id 3187 3187 * @uses bbp_get_topic() To get the topic 3188 * @uses bbp_get_pending_status_id() To get the pending status id 3188 3189 * @uses do_action() Calls 'bbp_approve_topic' with the topic id 3189 /* @uses add_post_meta() To add the previous status to a meta3190 /* @uses delete_post_meta() To delete the previous status meta3190 * @uses bbp_get_public_status_id() To get the public status id 3191 * @uses remove_action() To remove the auto save post revision action 3191 3192 * @uses wp_update_post() To update the topic with the new status 3192 3193 * @uses do_action() Calls 'bbp_approved_topic' with the topic id … … 3232 3233 * @param int $topic_id Topic id 3233 3234 * @uses bbp_get_topic() To get the topic 3235 * @uses bbp_get_pending_status_id() To get the pending status id 3234 3236 * @uses do_action() Calls 'bbp_unapprove_topic' with the topic id 3235 /* @uses get_post_meta() To get the previous status 3236 /* @uses delete_post_meta() To delete the previous status meta 3237 * @uses remove_action() To remove the auto save post revision action 3237 3238 * @uses wp_update_post() To update the topic with the new status 3238 3239 * @uses do_action() Calls 'bbp_unapproved_topic' with the topic id
Note: See TracChangeset
for help on using the changeset viewer.