diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2013-03-19 14:49:34 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2013-03-21 22:26:46 +0100 |
commit | 5660816ea079585c70583a9e470e22c4cf66c022 (patch) | |
tree | 298c188eeef5d53a2dcd266eab4607f11bb8c63d /web | |
parent | de39a712b040d4ce51dc4eb2f4e2ef74a7a9013c (diff) | |
download | aur-5660816ea079585c70583a9e470e22c4cf66c022.tar.gz aur-5660816ea079585c70583a9e470e22c4cf66c022.tar.xz |
Save last login IP address
Save the IP address used for the last login in the "Users" table. This
makes it a bit easier to create IP ban lists for spammers without
looking at web server logs.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web')
-rw-r--r-- | web/lib/acctfuncs.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php index b94c4c3e..21cc6c21 100644 --- a/web/lib/acctfuncs.inc.php +++ b/web/lib/acctfuncs.inc.php @@ -444,7 +444,8 @@ function try_login() { } if ($logged_in) { - $q = "UPDATE Users SET LastLogin = UNIX_TIMESTAMP() "; + $q = "UPDATE Users SET LastLogin = UNIX_TIMESTAMP(), "; + $q.= "LastLoginIPAddress = " . $dbh->quote(ip2long($_SERVER['REMOTE_ADDR'])) . " "; $q.= "WHERE ID = '$userID'"; $dbh->exec($q); |