Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #63412, comment 1


Ignore:
Timestamp:
05/08/2025 03:31:56 AM (6 months ago)
Author:
dd32
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #63412, comment 1

    initial v1  
    3131
    3232
    33 I suspect you'll be able to use the `check_password` filter to alter the behaviour, something like this is probably going to resolve it:
    34 {{{
     33I suspect you'll be able to use the `check_password` filter in a plugin to alter the behaviour, something like this is probably going to resolve it:
     34{{{#!php
     35<?php
     36
    3537// Support passwords from JS bcrypt which did not slash the password.
    3638add_filter( 'check_password', function( $check, $password, $hash ) {