Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/30/2011 02:00:16 PM (15 years ago)
Author:
djpaul
Message:

Replace all mentions of 1.3 with 1.5 in phpDoc and deprecated function notices. Fixes #3416

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-classes.php

    r4817 r4907  
    197197        /**
    198198         * In BuddyPress 1.2.x, this was used to retrieve specific activity stream items (for example, on an activity's permalink page).
    199          * As of 1.3.x, use BP_Activity_Activity::get( ..., $in ) instead.
     199         * As of 1.5.x, use BP_Activity_Activity::get( ..., $in ) instead.
    200200         *
    201          * @deprecated 1.3
     201         * @deprecated 1.5
    202202         * @deprecated Use BP_Activity_Activity::get( ..., $in ) instead.
    203203         * @param mixed $activity_ids Array or comma-separated string of activity IDs to retrieve
     
    211211         */
    212212        function get_specific( $activity_ids, $max = false, $page = 1, $per_page = 25, $sort = 'DESC', $display_comments = false ) {
    213                 _deprecated_function( __FUNCTION__, '1.3', 'Use BP_Activity_Activity::get( ..., $in ) instead.' );
     213                _deprecated_function( __FUNCTION__, '1.5', 'Use BP_Activity_Activity::get( ..., $in ) instead.' );
    214214                return BP_Activity_Activity::get( $max, $page, $per_page, $sort, false, false, $display_comments, false, false, $activity_ids );
    215215        }
Note: See TracChangeset for help on using the changeset viewer.