Changeset 61444 for trunk/src/wp-signup.php
- Timestamp:
- 01/06/2026 05:55:33 AM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-signup.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r61411 r61444 977 977 printf( __( 'You must first <a href="%s">log in</a>, and then you can create a new site.' ), $login_url ); 978 978 } else { 979 $stage = isset( $_POST['stage'] ) ? $_POST['stage'] :'default';979 $stage = $_POST['stage'] ?? 'default'; 980 980 switch ( $stage ) { 981 981 case 'validate-user-signup': … … 1001 1001 case 'default': 1002 1002 default: 1003 $user_email = isset( $_POST['user_email'] ) ? $_POST['user_email'] :'';1003 $user_email = $_POST['user_email'] ?? ''; 1004 1004 /** 1005 1005 * Fires when the site sign-up form is sent.
Note: See TracChangeset
for help on using the changeset viewer.