Skip to content
GitLab
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
8a32efcc
Commit
8a32efcc
authored
Jul 04, 2008
by
Nigel McNie
Browse files
Improve <title> on group members page.
parent
811c9807
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/group/members.php
View file @
8a32efcc
...
...
@@ -27,7 +27,6 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'groups'
);
require
(
dirname
(
dirname
(
__FILE__
))
.
'/init.php'
);
define
(
'TITLE'
,
get_string
(
'groups'
));
require_once
(
'group.php'
);
require_once
(
'searchlib.php'
);
require_once
(
get_config
(
'docroot'
)
.
'interaction/lib.php'
);
...
...
@@ -37,6 +36,7 @@ $id = param_integer('id');
if
(
!
$group
=
get_record
(
'group'
,
'id'
,
$id
,
'deleted'
,
0
))
{
throw
new
GroupNotFoundException
(
"Couldn't find group with id
$id
"
);
}
define
(
'TITLE'
,
$group
->
name
.
' - '
.
get_string
(
'Members'
,
'group'
));
$group
->
admins
=
get_column_sql
(
"SELECT member
FROM
{
group_member
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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