Added some help links

This commit is contained in:
moodler
2006-10-29 08:13:38 +00:00
parent 4b612862c7
commit ee9534257d
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -281,13 +281,13 @@
switch ($action) {
case 'add':
print_heading(get_string('addrole', 'role'));
print_heading_with_help(get_string('addrole', 'role'), 'role');
break;
case 'view':
print_heading(get_string('viewrole', 'role'));
print_heading_with_help(get_string('viewrole', 'role'), 'role');
break;
case 'edit':
print_heading(get_string('editrole', 'role'));
print_heading_with_help(get_string('editrole', 'role'), 'role');
break;
}
+1 -1
View File
@@ -1,7 +1,7 @@
<?php
// this page deals with the 2 tabs for manage.php and grant.php
$toprow[] = new tabobject('manage', $CFG->wwwroot.'/'.$CFG->admin.'/roles/manage.php', get_string('manageroles', 'role'));
$toprow[] = new tabobject('manage', $CFG->wwwroot.'/'.$CFG->admin.'/roles/manage.php', get_string('manageroles', 'role'),'', true);
$toprow[] = new tabobject('allowassign', $CFG->wwwroot.'/'.$CFG->admin.'/roles/allowassign.php', get_string('allowassign', 'role'));