Make WordPress Core


Ignore:
Timestamp:
01/24/2008 06:36:45 PM (17 years ago)
Author:
ryan
Message:

Add check_password filter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pluggable.php

    r6647 r6648  
    11221122    }
    11231123
    1124     return $wp_hasher->CheckPassword($password, $hash);
     1124    $check = $wp_hasher->CheckPassword($password, $hash);
     1125
     1126    return apply_filters('check_password', $check, $password, $hash);
    11251127}
    11261128endif;
Note: See TracChangeset for help on using the changeset viewer.