summaryrefslogtreecommitdiff
path: root/modules/user
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-12-23 13:31:52 -0800
committerBharat Mediratta <bharat@menalto.com>2009-12-23 13:31:52 -0800
commiteb047d7f5deff499ce71fe720058b335f4868fe3 (patch)
tree290eb94d644f40b478c4792efbaa8669d409d329 /modules/user
parent3e8e13bd2533ff7e3493b27c8a8587dfb65e1b26 (diff)
ORM relations now require you to do find_all() or count_all() to get the results.
Diffstat (limited to 'modules/user')
-rw-r--r--modules/user/views/admin_users_group.html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/views/admin_users_group.html.php b/modules/user/views/admin_users_group.html.php
index b7e573b3..6c6c341e 100644
--- a/modules/user/views/admin_users_group.html.php
+++ b/modules/user/views/admin_users_group.html.php
@@ -13,9 +13,9 @@
<? endif ?>
</h4>
-<? if ($group->users->count() > 0): ?>
+<? if ($group->users->count_all() > 0): ?>
<ul class="g-member-list">
- <? foreach ($group->users as $i => $user): ?>
+ <? foreach ($group->users->find_all() as $i => $user): ?>
<li class="g-user">
<?= html::clean($user->name) ?>
<? if (!$group->special): ?>