Skip to content

Commit c3ae119

Browse files
committed
MDL-64785 files: page titles consistency.
1 parent fba203c commit c3ae119

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

group/index.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@
183183
echo $OUTPUT->header();
184184

185185
echo $OUTPUT->render_participants_tertiary_nav($course);
186-
echo $OUTPUT->heading(format_string($course->shortname, true, array('context' => $context)) . ' ' . get_string('groups') , 3);
187186

188187
$groups = groups_get_all_groups($courseid);
189188
$selectedname = null;

lang/en/moodle.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2357,6 +2357,7 @@
23572357
$string['usersnew'] = 'New users';
23582358
$string['usersnoaccesssince'] = 'Inactive for more than';
23592359
$string['userpreferences'] = 'User preferences';
2360+
$string['userprivatefiles'] = '{$a}: Private files';
23602361
$string['userswithfiles'] = 'Users with files';
23612362
$string['useruploadtype'] = 'User upload type: {$a}';
23622363
$string['userzones'] = 'User zones';

user/files.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
$context = context_user::instance($USER->id);
3434
require_capability('moodle/user:manageownfiles', $context);
3535

36-
$title = get_string('privatefiles');
36+
$title = get_string('userprivatefiles', 'core', fullname($USER));
37+
$struser = get_string('user');
3738

3839
$PAGE->set_url('/user/files.php');
3940
$PAGE->set_context($context);

0 commit comments

Comments
 (0)