From f6f321982f844c92488edf5420025b4381e53f50 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 18 Nov 2005 10:18:19 +0100 Subject: [PATCH] handle last_login in editor/login sequence --- backend.php | 13 +++++++------ functions.php | 3 +++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/backend.php b/backend.php index 42707b09a..4d0753b86 100644 --- a/backend.php +++ b/backend.php @@ -1829,7 +1829,7 @@ "; $result = db_query($link, "SELECT - id,login,access_level + id,login,access_level,last_login FROM ttrss_users ORDER by login"); @@ -1837,9 +1837,10 @@ print "

"; print " - - "; + + + + "; $lnum = 0; @@ -1865,7 +1866,6 @@ print ""; print ""; - } else if (!$edit_uid || $subop != "edit") { @@ -1898,7 +1898,8 @@ } - + print ""; + print ""; ++$lnum; diff --git a/functions.php b/functions.php index 3985890b1..c35519109 100644 --- a/functions.php +++ b/functions.php @@ -528,6 +528,9 @@ $_SESSION["name"] = db_fetch_result($result, 0, "login"); $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level"); + db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " . + $_SESSION["uid"]); + return true; }
SelectLogin - Access Level
SelectUsernameAccess LevelLast login
".$line["login"]."".$line["access_level"]."".$line["last_login"]."