diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-27 21:57:41 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-27 21:57:41 +0000 |
commit | ca8e92376a4a0d9cbe072010e35e2e162b83dc5a (patch) | |
tree | 824a9cc872ddf644d3cf7f03f0ed59cfe90ffa34 | |
parent | 9048a5afcaa7399082fe350e6d75bcdf012fcbc2 (diff) |
Add gravatars to users
-rw-r--r-- | modules/user/views/admin_users.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/views/admin_users.html.php b/modules/user/views/admin_users.html.php index dacd0a38..3eb03044 100644 --- a/modules/user/views/admin_users.html.php +++ b/modules/user/views/admin_users.html.php @@ -19,7 +19,7 @@ <? foreach ($users as $i => $user): ?> <li class="<?= text::alternate("gOddRow", "gEvenRow") ?>"> - <img src="<?= $theme->url("images/avatar.jpg") ?>" + <img src="<?= $user->avatar_url(20, $theme->url("images/avatar.jpg", true)) ?>" title="<?= t("Drag user onto group below to add as a new member") ?>" alt="<?= $user->name ?>" width="20" |