Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/03/2015 10:51:31 PM (10 years ago)
Author:
tw2113
Message:

Punctuation is a key element to complete sentences.

See #6396.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/bp-activity-filters.php

    r9833 r9834  
    211211     * @since BuddyPress (1.2.0)
    212212     *
    213      * @param array Array of allowed HTML tags and attributes.
     213     * @param array $value Array of allowed HTML tags and attributes.
    214214     */
    215215    $activity_allowedtags = apply_filters( 'bp_activity_allowed_tags', $activity_allowedtags );
     
    321321 * @uses bp_activity_update_mention_count_for_user()
    322322 *
    323  * @param BP_Activity_Activity $activity The BP_Activity_Activity object
     323 * @param BP_Activity_Activity $activity The BP_Activity_Activity object.
    324324 */
    325325function bp_activity_at_name_send_emails( $activity ) {
     
    379379     * @param array $matches Items matched by preg_replace_callback() in bp_activity_make_nofollow_filter().
    380380     *
    381      * @return string $text Link with rel=nofollow added
     381     * @return string $text Link with rel=nofollow added.
    382382     */
    383383    function bp_activity_make_nofollow_filter_callback( $matches ) {
     
    431431     * @since BuddyPress (1.5.0)
    432432     *
    433      * @param string $read_more Internationalized "Read more" text.
     433     * @param string $value Internationalized "Read more" text.
    434434     */
    435435    $append_text    = apply_filters( 'bp_activity_excerpt_append_text', __( '[Read more]', 'buddypress' ) );
     
    440440     * @since BuddyPress (1.5.0)
    441441     *
    442      * @param int $excerpt_length Number indicating how many words to trim the excerpt down to.
     442     * @param int $value Number indicating how many words to trim the excerpt down to.
    443443     */
    444444    $excerpt_length = apply_filters( 'bp_activity_excerpt_length', 358 );
     
    544544 * @since BuddyPress (2.0.0)
    545545 *
    546  * @uses bp_activity_get_last_updated() to get the recorded date of the last activity
     546 * @uses bp_activity_get_last_updated() to get the recorded date of the last activity.
    547547 *
    548548 * @param array $response
     
    626626     * @since BuddyPress (2.0.0)
    627627     *
    628      * @param array $settings Heartbeat settings array.
     628     * @param array $value Heartbeat settings array.
    629629     */
    630630    $heartbeat_settings = apply_filters( 'heartbeat_settings', array() );
     
    639639     * @since BuddyPress (2.0.0)
    640640     *
    641      * @param int $frequency The frequency in seconds between pulses.
     641     * @param int $value The frequency in seconds between pulses.
    642642     */
    643643    $bp_activity_pulse = apply_filters( 'bp_activity_heartbeat_pulse', 15 );
Note: See TracChangeset for help on using the changeset viewer.