diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-06-28 19:49:48 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-06-28 19:49:48 -0700 |
commit | 6e8a8c53e685a6c3f35f1426ab4dd6dcc18578e0 (patch) | |
tree | 0b3640e48c9e28963b36b74f332580f7fab77843 /modules/user | |
parent | c4f991bb7d7e90f8c55897f89888d9196c7e438f (diff) |
Rename $theme->url() to $theme->theme_url() for consistency wiht
$theme->theme_script().
Diffstat (limited to 'modules/user')
-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 542b8b8b..b469f82d 100644 --- a/modules/user/views/admin_users.html.php +++ b/modules/user/views/admin_users.html.php @@ -66,7 +66,7 @@ <? foreach ($users as $i => $user): ?> <tr id="gUser-<?= $user->id ?>" class="<?= text::alternate("gOddRow", "gEvenRow") ?> user <?= $user->admin ? "admin" : "" ?>"> <td id="user-<?= $user->id ?>" class="core-info gDraggable"> - <img src="<?= $user->avatar_url(20, $theme->url("images/avatar.jpg", true)) ?>" + <img src="<?= $user->avatar_url(20, $theme->theme_url("images/avatar.jpg", true)) ?>" title="<?= t("Drag user onto group below to add as a new member") ?>" alt="<?= p::clean($user->name) ?>" width="20" |