diff --git a/admin/admin.php b/admin/admin.php
index 91d7a56f270..7f27e8ea74a 100644
--- a/admin/admin.php
+++ b/admin/admin.php
@@ -60,7 +60,6 @@
"$stradministration -> $strusers -> $strassignadmins", "");
/// Add an admin if one is specified
-
if (!empty($_GET['add'])) {
if (! add_admin($add)) {
error("Could not add that admin!");
@@ -68,13 +67,17 @@
}
/// Remove an admin if one is specified.
-
if (!empty($_GET['remove'])) {
if (! remove_admin($remove)) {
error("Could not remove that admin!");
}
}
+/// Print a help notice about this page
+ if (empty($add) and empty($remove) and empty($search)) {
+ print_simple_box("
".get_string("adminhelpassignadmins")."", "center", "50%");
+ }
+
/// Get all existing admins
$admins = get_admins();
diff --git a/admin/creators.php b/admin/creators.php
index 5c0055c3ae3..d1f63071b40 100755
--- a/admin/creators.php
+++ b/admin/creators.php
@@ -75,6 +75,11 @@
}
}
+/// Print a help notice about this page
+ if (empty($add) and empty($remove) and empty($search)) {
+ print_simple_box("".get_string("adminhelpassigncreators")."", "center", "50%");
+ }
+
/// Get all existing creators
$creators = get_creators();
diff --git a/admin/users.php b/admin/users.php
index f27b1dc6751..1f7b7a72d1e 100644
--- a/admin/users.php
+++ b/admin/users.php
@@ -15,7 +15,7 @@
$stradministration = get_string("administration");
$strusers = get_string("users");
- print_header("$site->shortname: $stradministration", "$site->fullname",
+ print_header("$site->shortname: $stradministration: $strusers", "$site->fullname",
"$stradministration -> $strusers");
print_heading($strusers);