Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
c7e5e226
Commit
c7e5e226
authored
Aug 20, 2009
by
Richard Mansfield
Browse files
Don't display deleted users in my groups member listing
parent
94b760dc
Changes
1
Show whitespace changes
Inline
Side-by-side
htdocs/lib/group.php
View file @
c7e5e226
...
...
@@ -1090,7 +1090,7 @@ function group_get_associated_groups($userid, $filter='all', $limit=20, $offset=
$members
=
get_records_sql_array
(
"
SELECT u.*
FROM
{
group_member
}
gm
INNER JOIN
{
usr
}
u ON gm.member = u.id
INNER JOIN
{
usr
}
u ON
(
gm.member = u.id
AND u.deleted = 0)
WHERE gm.group = ?
ORDER BY "
.
db_random
()
.
"
LIMIT 3"
,
array
(
$groupid
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment