Ignore:
Timestamp:
Jun 10, 2006 2:57:06 AM (18 years ago)
Author:
scdev
Message:

Q - changed Prefs so varable is serialized in the database ... so we can save arrays and such. Updated Auth_* so encrypted userpass is never stored in the session.

File:
1 edited

Legend:

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

    r154 r158  
    342342        // Return user data if found.
    343343        if ($user_data = mysql_fetch_assoc($qid)) {
     344            // Don't return password value.
     345            unset($user_data['userpass']);
    344346            $app->logMsg(sprintf('Authentication successful for user %s (%s)', $user_data['user_id'], $username), LOG_INFO, __FILE__, __LINE__);
    345347            return $user_data;
Note: See TracChangeset for help on using the changeset viewer.