Changes between Initial Version and Version 1 of Ticket #31224
- Timestamp:
- 02/03/2015 09:55:38 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31224
- Property Keywords needs-patch added
-
Property
Milestone
changed from
Awaiting Review
to4.2
-
Ticket #31224 – Description
initial v1 1 1 File: wp-includes/ms-functions.php 2 Function: maybe_add_existing_user_to_blog()2 Function: `maybe_add_existing_user_to_blog()` 3 3 Line: 1938 4 4 … … 6 6 7 7 Replace line 1938 with the following to correct. 8 9 wp_die( sprintf( __( 'You have been added to this site. Please visit the <a href="%s">homepage</a> or <a href="%s">log in</a> using your username and password.' ), home_url(), admin_url() ), __( 'WordPress › Success' ), array('response'=>200) ); 8 {{{ 9 wp_die( sprintf( __( 'You have been added to this site. Please visit the <a href="%s">homepage</a> or <a href="%s">log in</a> using your username and password.' ), home_url(), admin_url() ), __( 'WordPress › Success' ), array( 'response' => 200 ) ); 10 }}}