Changeset 10711 for trunk/src/bp-members/bp-members-screens.php
- Timestamp:
- 04/15/2016 04:59:34 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-screens.php
r10652 r10711 20 20 /** 21 21 * Handle the display of the profile page by loading the correct template file. 22 * 23 * @since 1.5.0 22 24 */ 23 25 function bp_members_screen_display_profile() { … … 42 44 /** 43 45 * Handle the display of the members directory index. 46 * 47 * @since 1.5.0 44 48 */ 45 49 function bp_members_screen_index() { … … 68 72 /** 69 73 * Handle the loading of the signup screen. 74 * 75 * @since 1.1.0 70 76 */ 71 77 function bp_core_screen_signup() { … … 102 108 $bp->signup->step = 'registration-disabled'; 103 109 104 // If the signup page is submitted, validate and save.110 // If the signup page is submitted, validate and save. 105 111 } elseif ( isset( $_POST['signup_submit'] ) && bp_verify_nonce_request( 'bp_new_signup' ) ) { 106 112 … … 154 160 } 155 161 156 // This situation doesn't naturally occur so bounce to website root.162 // This situation doesn't naturally occur so bounce to website root. 157 163 } else { 158 164 bp_core_redirect( bp_get_root_domain() ); … … 298 304 * Handle the loading of the Activate screen. 299 305 * 306 * @since 1.1.0 307 * 300 308 * @todo Move the actual activation process into an action in bp-members-actions.php 301 309 */
Note: See TracChangeset
for help on using the changeset viewer.