Make WordPress Core

Changeset 42234 for branches/4.4


Ignore:
Timestamp:
11/27/2017 01:09:38 AM (7 years ago)
Author:
dd32
Message:

WPDB: Check that AUTH_SALT is not empty, Fix a PHP notice when AUTH_SALT is undefined.

Props jsonfry, mkomar, pento.
Merges [42119] and [42120] to the 4.4 branch.
Fixes #42431 and #42401 for 4.4.

Location:
branches/4.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4

  • branches/4.4/src/wp-includes/wp-db.php

    r42061 r42234  
    18971897            $algo = function_exists( 'hash' ) ? 'sha256' : 'sha1';
    18981898            // Old WP installs may not have AUTH_SALT defined.
    1899             $salt = defined( 'AUTH_SALT' ) ? AUTH_SALT : rand();
     1899            $salt = defined( 'AUTH_SALT' ) && AUTH_SALT ? AUTH_SALT : (string) rand();
    19001900
    19011901            $placeholder = '{' . hash_hmac( $algo, uniqid( $salt, true ), $salt ) . '}';
Note: See TracChangeset for help on using the changeset viewer.