Changeset 52091
- Timestamp:
- 11/09/2021 11:46:09 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r52060 r52091 1041 1041 * 1042 1042 * @since 3.0.0 1043 * 1044 * @param string $registration_redirect The redirect destination URL. 1043 * @since 5.9.0 Added the `$errors` parameter. 1044 * 1045 * @param string $registration_redirect The redirect destination URL. 1046 * @param int|WP_Error $errors User id if registration was successful, 1047 * WP_Error object otherwise. 1045 1048 */ 1046 $redirect_to = apply_filters( 'registration_redirect', $registration_redirect );1049 $redirect_to = apply_filters( 'registration_redirect', $registration_redirect, $errors ); 1047 1050 1048 1051 login_header( __( 'Registration Form' ), '<p class="message register">' . __( 'Register For This Site' ) . '</p>', $errors );
Note: See TracChangeset
for help on using the changeset viewer.