Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/30/2011 02:00:16 PM (14 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-core/bp-core-functions.php

    r4855 r4907  
    1212 *
    1313 * @package BuddyPress
    14  * @since 1.3
     14 * @since 1.5
    1515 *
    1616 * @uses bp_get_root_blog_id()
     
    3232 *
    3333 * @package BuddyPress
    34  * @since 1.3
     34 * @since 1.5
    3535 *
    3636 * @uses bp_get_root_blog_id()
     
    4949 *
    5050 * @package BuddyPress
    51  * @since 1.3
     51 * @since 1.5
    5252 *
    5353 * @uses bp_get_root_blog_id()
     
    7474 *
    7575 * @package BuddyPress Core
    76  * @since 1.3
    77  *
    78  * @todo Remove the "Upgrading from an earlier version of BP pre-1.3" block. Temporary measure for
     76 * @since 1.5
     77 *
     78 * @todo Remove the "Upgrading from an earlier version of BP pre-1.5" block. Temporary measure for
    7979 *       people running trunk installations. Leave for a version or two, then remove.
    8080 */
     
    8282    $page_ids = bp_get_option( 'bp-pages' );
    8383
    84     // Upgrading from an earlier version of BP pre-1.3
     84    // Upgrading from an earlier version of BP pre-1.5
    8585    if ( !isset( $page_ids['members'] ) && $ms_page_ids = get_site_option( 'bp-pages' ) ) {
    8686        $page_blog_id = bp_is_multiblog_mode() ? get_current_blog_id() : bp_get_root_blog_id();
     
    103103 *
    104104 * @package BuddyPress Core
    105  * @since 1.3
     105 * @since 1.5
    106106 *
    107107 * @param array $blog_page_ids The IDs of the WP pages corresponding to BP component directories
     
    115115 *
    116116 * @package BuddyPress Core
    117  * @since 1.3
     117 * @since 1.5
    118118 *
    119119 * @return obj $pages Page names, IDs, and slugs
     
    161161 * Creates a default component slug from a WP page root_slug
    162162 *
    163  * Since 1.3, BP components get their root_slug (the slug used immediately
     163 * Since 1.5, BP components get their root_slug (the slug used immediately
    164164 * following the root domain) from the slug of a corresponding WP page.
    165165 *
     
    176176 *
    177177 * @package BuddyPress Core
    178  * @since 1.3
     178 * @since 1.5
    179179 *
    180180 * @param str $root_slug The root slug, which comes from $bp->pages->[component]->slug
     
    256256 *
    257257 * @package BuddyPress Core
    258  * @since 1.3
     258 * @since 1.5
    259259 *
    260260 * @global object $bp Global BuddyPress settings object
     
    296296 *
    297297 * @package BuddyPress Core
    298  * @since 1.3
     298 * @since 1.5
    299299 *
    300300 * @global object $bp Global BuddyPress settings object
     
    921921 * @global object $bp BuddyPress global settings
    922922 * @package BuddyPress Core
    923  * @since 1.3
     923 * @since 1.5
    924924 */
    925925function bp_embed_init() {
     
    11011101 *
    11021102 * @package BuddyPress
    1103  * @since 1.3
     1103 * @since 1.5
    11041104 *
    11051105 * @param int $blog_id Optional. Defaults to the current blog id.
     
    11251125 *
    11261126 * @package BuddyPress
    1127  * @since 1.3
     1127 * @since 1.5
    11281128 *
    11291129 * @param int $blog_id Optional. Defaults to the current blog id.
     
    11731173 *
    11741174 * @package BuddyPress
    1175  * @since 1.3
     1175 * @since 1.5
    11761176 *
    11771177 * @uses apply_filters() Filter bp_get_user_meta_key to modify keys individually
     
    11901190 *
    11911191 * @package BuddyPress
    1192  * @since 1.3
     1192 * @since 1.5
    11931193 *
    11941194 * @uses bp_get_user_meta_key() For a filterable version of the meta key
     
    12111211 *
    12121212 * @package BuddyPress
    1213  * @since 1.3
     1213 * @since 1.5
    12141214 *
    12151215 * @uses bp_get_user_meta_key() For a filterable version of the meta key
     
    12321232 *
    12331233 * @package BuddyPress
    1234  * @since 1.3
     1234 * @since 1.5
    12351235 *
    12361236 * @uses bp_get_user_meta_key() For a filterable version of the meta key
     
    12491249 *
    12501250 * @package BuddyPress
    1251  * @since 1.3
     1251 * @since 1.5
    12521252 *
    12531253 * @uses apply_filters() Filter 'bp_is_username_compatibility_mode' to alter
     
    12731273 *
    12741274 * @package BuddyPress
    1275  * @since 1.3
     1275 * @since 1.5
    12761276 *
    12771277 * @uses apply_filters() Filter 'bp_is_multiblog_mode' to alter
     
    12851285 * Should we use the WP admin bar?
    12861286 *
    1287  * The WP Admin Bar, introduced in WP 3.1, is fully supported in BuddyPress as of BP 1.3.
    1288  *
    1289  * For the BP 1.3 development cycle, the BuddyBar will remain the default navigation for BP
     1287 * The WP Admin Bar, introduced in WP 3.1, is fully supported in BuddyPress as of BP 1.5.
     1288 *
     1289 * For the BP 1.5 development cycle, the BuddyBar will remain the default navigation for BP
    12901290 * installations. In the future, this behavior will be changed, so that the WP Admin Bar is the
    12911291 * default.
    12921292 *
    12931293 * @package BuddyPress
    1294  * @since 1.3
     1294 * @since 1.5
    12951295 *
    12961296 * @uses apply_filters() Filter 'bp_use_wp_admin_bar' to alter
     
    13051305 *
    13061306 * @return bool False when activity embed support is disabled; true when enabled (default)
    1307  * @since 1.3
     1307 * @since 1.5
    13081308 */
    13091309function bp_use_embed_in_activity() {
     
    13151315 *
    13161316 * @return bool False when activity replies embed support is disabled; true when enabled (default)
    1317  * @since 1.3
     1317 * @since 1.5
    13181318 */
    13191319function bp_use_embed_in_activity_replies() {
     
    13251325 *
    13261326 * @return bool False when form post embed support is disabled; true when enabled (default)
    1327  * @since 1.3
     1327 * @since 1.5
    13281328 */
    13291329function bp_use_embed_in_forum_posts() {
     
    13351335 *
    13361336 * @return bool False when form post embed support is disabled; true when enabled (default)
    1337  * @since 1.3
     1337 * @since 1.5
    13381338 */
    13391339function bp_use_embed_in_private_messages() {
     
    13451345 *
    13461346 * @package BuddyPress
    1347  * @since 1.3
     1347 * @since 1.5
    13481348 *
    13491349 * @param string $path
     
    13591359     *
    13601360     * @package BuddyPress
    1361      * @since 1.3
     1361     * @since 1.5
    13621362     *
    13631363     * @param string $path
     
    14371437 * @global WP_Query $wp_query WordPress query object
    14381438 * @param string $redirect If 'remove_canonical_direct', remove WordPress' "helpful" redirect_canonical action.
    1439  * @since 1.3
     1439 * @since 1.5
    14401440 */
    14411441function bp_do_404( $redirect = 'remove_canonical_direct' ) {
Note: See TracChangeset for help on using the changeset viewer.