Changeset 371


Ignore:
Timestamp:
May 22, 2010 5:56:45 PM (14 years ago)
Author:
quinn
Message:

Minor update.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Auth_SQL.inc.php

    r370 r371  
    870870            return $hash;
    871871            break;
     872
    872873        default :
    873874            $app->logMsg(sprintf('Authentication encrypt type specified is unrecognized: %s', $this->_params['encryption_type']), LOG_NOTICE, __FILE__, __LINE__);
  • trunk/services/login.php

    r362 r371  
    4444    } else {
    4545        $app->raiseMsg(_("Login failed, please try again."), MSG_NOTICE, __FILE__, __LINE__);
    46         $app->logMsg(sprintf('User %s failed login using (MD5ed) password: %s', $frm['username'], md5($frm['password'])), LOG_NOTICE, __FILE__, __LINE__);
     46        $app->logMsg(sprintf('User %s failed login (encrypted password: %s)', $frm['username'], $auth->encryptPassword($frm['password'])), LOG_NOTICE, __FILE__, __LINE__);
    4747    }
    4848}
Note: See TracChangeset for help on using the changeset viewer.