Changeset 45582
- Timestamp:
- 07/01/2019 08:26:25 AM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r45412 r45582 551 551 552 552 if ( ! empty( $_REQUEST['redirect_to'] ) ) { 553 $redirect_to = $requested_redirect_to = $_REQUEST['redirect_to']; 553 $redirect_to = $_REQUEST['redirect_to']; 554 $requested_redirect_to = $redirect_to; 554 555 } else { 555 556 $redirect_to = 'wp-login.php?loggedout=true'; -
trunk/src/wp-settings.php
r45519 r45582 528 528 // Check site status 529 529 if ( is_multisite() ) { 530 if ( true !== ( $file = ms_site_check() ) ) { 530 $file = ms_site_check(); 531 if ( true !== $file ) { 531 532 require( $file ); 532 533 die();
Note: See TracChangeset
for help on using the changeset viewer.