diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-07-23 10:20:49 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-07-23 10:20:49 -0700 |
commit | 41b8f943a63fe2b183ea683016cefd792ef39bf3 (patch) | |
tree | a473164cb535b4612e1584ffc9f28e8baab9d546 /modules/user | |
parent | 7f1a7ead589ce85e029ff0eb7f7e88bd04b8c8cb (diff) |
Convert instances of theme_url() to just url() to match the API change
made in dbeadc1407293d0c7af36723db6fe5699890b845
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 b469f82d..542b8b8b 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->theme_url("images/avatar.jpg", true)) ?>" + <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="<?= p::clean($user->name) ?>" width="20" |