summaryrefslogtreecommitdiffstats
path: root/web/lib/acctfuncs.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2013-03-19 14:49:34 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2013-03-21 22:26:46 +0100
commit5660816ea079585c70583a9e470e22c4cf66c022 (patch)
tree298c188eeef5d53a2dcd266eab4607f11bb8c63d /web/lib/acctfuncs.inc.php
parentde39a712b040d4ce51dc4eb2f4e2ef74a7a9013c (diff)
downloadaurweb-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/lib/acctfuncs.inc.php')
-rw-r--r--web/lib/acctfuncs.inc.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php
index b94c4c3..21cc6c2 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);