summaryrefslogtreecommitdiff
path: root/modules/pref-users.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 04:38:39 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 04:38:39 +0100
commitf52fb64d8cde75ac94a07266cc4515d5ed07ccc4 (patch)
tree6c0e23689956ae201684f7f6bff9e0559621b6e6 /modules/pref-users.php
parenta5bd7bf051e2d547fc0aed78ba231588d44291ce (diff)
user prefs: show registration date
Diffstat (limited to 'modules/pref-users.php')
-rw-r--r--modules/pref-users.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/pref-users.php b/modules/pref-users.php
index 467f3e106..2e9eff759 100644
--- a/modules/pref-users.php
+++ b/modules/pref-users.php
@@ -225,7 +225,8 @@
$result = db_query($link, "SELECT
id,login,access_level,email,
- ".SUBSTRING_FOR_DATE."(last_login,1,16) as last_login
+ ".SUBSTRING_FOR_DATE."(last_login,1,16) as last_login,
+ ".SUBSTRING_FOR_DATE."(created,1,16) as created
FROM
ttrss_users
WHERE
@@ -250,6 +251,7 @@
<td align='center' width=\"5%\">&nbsp;</td>
<td width=''><a href=\"javascript:updateUsersList('login')\">".__('Login')."</a></td>
<td width='20%'><a href=\"javascript:updateUsersList('access_level')\">".__('Access Level')."</a></td>
+ <td width='20%'><a href=\"javascript:updateUsersList('created')\">".__('Registered')."</a></td>
<td width='20%'><a href=\"javascript:updateUsersList('last_login')\">".__('Last login')."</a></td></tr>";
$lnum = 0;
@@ -277,9 +279,12 @@
if (get_pref($link, 'HEADLINES_SMART_DATE')) {
$line["last_login"] = smart_date_time(strtotime($line["last_login"]));
+ $line["created"] = smart_date_time(strtotime($line["created"]));
} else {
$line["last_login"] = date(get_pref($link, 'SHORT_DATE_FORMAT'),
strtotime($line["last_login"]));
+ $line["created"] = date(get_pref($link, 'SHORT_DATE_FORMAT'),
+ strtotime($line["created"]));
}
// if (!$edit_uid || $subop != "edit") {
@@ -333,6 +338,8 @@
} */
+
+ print "<td>".$line["created"]."</td>";
print "<td>".$line["last_login"]."</td>";
print "</tr>";