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
811c9807
Commit
811c9807
authored
Jul 04, 2008
by
Nigel McNie
Browse files
Fix <title> for group info page.
parent
e7c0a48c
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/group/view.php
View file @
811c9807
...
...
@@ -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_select
(
'group'
,
'id = ? AND deleted = 0'
,
array
(
$id
),
'*, '
.
db_format_tsfield
(
'ctime'
)))
{
throw
new
GroupNotFoundException
(
"Couldn't find group with id
$id
"
);
}
define
(
'TITLE'
,
$group
->
name
);
$group
->
ctime
=
strftime
(
get_string
(
'strftimedate'
),
$group
->
ctime
);
$group
->
admins
=
get_column_sql
(
"SELECT 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