File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66define ('DB_HOST ' , 'localhost ' ); // 99% chance you won't need to change this value
77define ('DB_CHARSET ' , 'utf8 ' );
88define ('DB_COLLATE ' , '' );
9+
10+ // Change SECRET_KEY to a unique phrase. You won't have to remember it later,
11+ // so make it long and complicated. You can visit https://www.grc.com/passwords.htm
12+ // to get a phrase generated for you.
913define ('SECRET_KEY ' , '' ); // Change this to a unique phrase.
1014
1115// You can have multiple installations in one database if you give each a unique prefix
Original file line number Diff line number Diff line change @@ -336,8 +336,8 @@ function wp_validate_auth_cookie($cookie = '') {
336336
337337 $ expired = $ expiration ;
338338
339- // Allow a grace period for POST requests
340- if ( 'POST ' == $ _SERVER ['REQUEST_METHOD ' ] )
339+ // Allow a grace period for POST and AJAX requests
340+ if ( defined ( ' DOING_AJAX ' ) || 'POST ' == $ _SERVER ['REQUEST_METHOD ' ] )
341341 $ expired += 3600 ;
342342
343343 if ( $ expired < time () )
@@ -699,18 +699,17 @@ function wp_create_nonce($action = -1) {
699699
700700if ( !function_exists ('wp_salt ' ) ) :
701701function wp_salt () {
702+
703+ if ( defined ('SECRET_KEY ' ) && '' != SECRET_KEY )
704+ return SECRET_KEY ;
705+
702706 $ salt = get_option ('secret ' );
703707 if ( empty ($ salt ) ) {
704708 $ salt = wp_generate_password ();
705709 update_option ('secret ' , $ salt );
706710 }
707711
708- if ( !defined ('SECRET_KEY ' ) || '' == SECRET_KEY )
709- $ secret_key = DB_PASSWORD . DB_USER . DB_NAME . DB_HOST . ABSPATH ;
710- else
711- $ secret_key = SECRET_KEY ;
712-
713- return $ salt . $ secret_key ;
712+ return $ salt ;
714713}
715714endif ;
716715
You can’t perform that action at this time.
0 commit comments