Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/15/2016 04:59:34 AM (9 years ago)
Author:
tw2113
Message:

Plenty of @since tag updates for the Members component.

See #6402.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-screens.php

    r10652 r10711  
    2020/**
    2121 * Handle the display of the profile page by loading the correct template file.
     22 *
     23 * @since 1.5.0
    2224 */
    2325function bp_members_screen_display_profile() {
     
    4244/**
    4345 * Handle the display of the members directory index.
     46 *
     47 * @since 1.5.0
    4448 */
    4549function bp_members_screen_index() {
     
    6872/**
    6973 * Handle the loading of the signup screen.
     74 *
     75 * @since 1.1.0
    7076 */
    7177function bp_core_screen_signup() {
     
    102108        $bp->signup->step = 'registration-disabled';
    103109
    104     // If the signup page is submitted, validate and save.
     110        // If the signup page is submitted, validate and save.
    105111    } elseif ( isset( $_POST['signup_submit'] ) && bp_verify_nonce_request( 'bp_new_signup' ) ) {
    106112
     
    154160                }
    155161
    156             // This situation doesn't naturally occur so bounce to website root.
     162                // This situation doesn't naturally occur so bounce to website root.
    157163            } else {
    158164                bp_core_redirect( bp_get_root_domain() );
     
    298304 * Handle the loading of the Activate screen.
    299305 *
     306 * @since 1.1.0
     307 *
    300308 * @todo Move the actual activation process into an action in bp-members-actions.php
    301309 */
Note: See TracChangeset for help on using the changeset viewer.