Changeset 25633


Ignore:
Timestamp:
Nov 21, 2013, 11:23:59 PM (10 years ago)
Author:
patdenice
Message:

Small bug on password hash verification with strpos function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_user.inc.php

    r25360 r25633  
    11491149
    11501150  // If the password has not been hashed with the current algorithm.
    1151   if (strpos('$P', $hash) !== 0)
     1151  if (strpos($hash, '$P') !== 0)
    11521152  {
    11531153    if (!empty($conf['pass_convert']))
Note: See TracChangeset for help on using the changeset viewer.