Changeset 549
- Timestamp:
- 09/14/06 22:52:23 (2 years ago)
- Files:
-
- devel/auth/internal/lib.php (modified) (1 diff)
- devel/login/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/auth/internal/lib.php
r269 r549 4 4 5 5 return get_record_select('users',"username = ? AND password = ? AND active = ? AND user_type = ? ", 6 array($username, $password,'yes','person'));6 array($username,md5($password),'yes','person')); 7 7 } 8 8 devel/login/index.php
r544 r549 30 30 31 31 if (!empty($l) && !empty($p)) { 32 $ok = authenticate_account($l, md5($p));32 $ok = authenticate_account($l, $p); 33 33 if ($ok) { 34 34 $messages[] = gettext("You have been logged on.");
