summaryrefslogtreecommitdiffstats
path: root/include/user.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2009-10-22 22:56:21 -0700
committerArun Persaud <arun@nubati.net>2009-10-30 20:49:42 -0700
commitba7d92fad7b3ac0cfe4a6733339aa474991315a2 (patch)
tree67bd1b65dd9e4b6e084ebbcdd9fca141464b7b31 /include/user.php
parentde3f7290a0d3fb90e48c89cf508b38d77db1ccff (diff)
downloade-DoKo-ba7d92fad7b3ac0cfe4a6733339aa474991315a2.tar.gz
e-DoKo-ba7d92fad7b3ac0cfe4a6733339aa474991315a2.tar.bz2
e-DoKo-ba7d92fad7b3ac0cfe4a6733339aa474991315a2.zip
NEW FEATURE: use gravatars as icons for players
use icons at the table and on the user page (for last players logged in).
Diffstat (limited to 'include/user.php')
-rw-r--r--include/user.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/user.php b/include/user.php
index bac4398..a027f40 100644
--- a/include/user.php
+++ b/include/user.php
@@ -206,9 +206,14 @@ else
echo "</p>\n";
/* display last 5 users that logged on */
- $names = DB_get_names_of_last_logins(5);
echo "<h4>Players last logged in:</h4>\n<p>\n";
- echo implode(", ",$names).",...\n";
+
+ $names = DB_get_names_of_last_logins(7);
+ $emails = DB_get_emails_of_last_logins(7);
+ for($i=0;$i<7;$i++)
+ {
+ echo "<img class=\"gravatar\" title=\"".$names[$i]."\" src=\"http://www.gravatar.com/avatar/".md5(strtolower(trim($emails[$i])))."?d=identicon\" />\n";
+ }
echo "</p>\n";
echo "</div>\n";