Skip to:
Content

BuddyPress.org

Ticket #7398: 7398.diff

File 7398.diff, 1.4 KB (added by jdgrimes, 8 years ago)

Correct the docs

  • src/bp-activity/bp-activity-functions.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    26152615                 *
    26162616                 * @since 1.2.0
    26172617                 *
    2618                  * @param int   $comment_id ID of the newly posted activity comment.
    2619                  * @param array $r          Array of parsed comment arguments.
    2620                  * @param int   $activity   ID of the activity item being commented on.
     2618                 * @param int    $comment_id ID of the newly posted activity comment.
     2619                 * @param array  $r          Array of parsed comment arguments.
     2620                 * @param object $activity   Activity item being commented on.
    26212621                 */
    26222622                do_action( 'bp_activity_comment_posted', $comment_id, $r, $activity );
    26232623        } else {
     
    26272627                 *
    26282628                 * @since 2.5.0
    26292629                 *
    2630                  * @param int   $comment_id ID of the newly posted activity comment.
    2631                  * @param array $r          Array of parsed comment arguments.
    2632                  * @param int   $activity   ID of the activity item being commented on.
     2630                 * @param int    $comment_id ID of the newly posted activity comment.
     2631                 * @param array  $r          Array of parsed comment arguments.
     2632                 * @param object $activity   Activity item being commented on.
    26332633                 */
    26342634                do_action( 'bp_activity_comment_posted_notification_skipped', $comment_id, $r, $activity );
    26352635        }