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

merge r25633 from trunk to branch 2.5
Small bug on password hash verification with strpos function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.5/include/functions_user.inc.php

    r23075 r25634  
    11721172
    11731173  // If the password has not been hashed with the current algorithm.
    1174   if (strpos('$P', $hash) !== 0)
     1174  if (strpos($hash, '$P') !== 0)
    11751175  {
    11761176    if (!empty($conf['pass_convert']))
Note: See TracChangeset for help on using the changeset viewer.