javalizard (@javalizard)

Forum Replies Created

Viewing 1 replies (of 1 total)
  • wp_validate_auth_cookie has an error. When hashing for the key

    $key = wp_hash($username . $expiration);

    WordPress and BBPress do it differently thus nullifying the ability to integrate the cookies of the two.

    The problem is that this in bbpress pluggable.php:

    $key = wp_hash($username .’|’. $expiration);

    should be this:

    $key = wp_hash($username . $expiration);

    There are a few other places where this needs to be fixed too

Viewing 1 replies (of 1 total)