Changeset 429
- Timestamp:
- 2011-04-22 08:25:00 (1 year ago)
- Files:
-
- branches/5.2/classes/misc/Member.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/5.2/classes/misc/Member.php
r424 r429 586 586 $q = $C->prepare('INSERT INTO ' . $SETTINGS['dbtableprefix'] . 'logins (ip, ts) VALUES (:ip, :ts)'); 587 587 $q->bindParam(':ip', $_SERVER['REMOTE_ADDR'], PDO::PARAM_STR); 588 $q->bind Param(':ts', time(), PDO::PARAM_INT);588 $q->bindValue(':ts', time(), PDO::PARAM_INT); 589 589 $q->execute(); 590 590 // update cookie and session
