Changeset 42976 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 04/13/2018 03:29:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r42866 r42976 2194 2194 } 2195 2195 2196 if ( wp_create_nonce( 'signup_form_' . $_POST['signup_form_id'] ) != $_POST['_signup_form']) {2197 wp_die( __( 'Please try again.' ) );2196 if ( ! wp_verify_nonce( $_POST['_signup_form'], 'signup_form_' . $_POST['signup_form_id'] ) ) { 2197 $result['errors']->add( 'invalid_nonce', __( 'Unable to submit this form, please try again.' ) ); 2198 2198 } 2199 2199
Note: See TracChangeset
for help on using the changeset viewer.