diff --git a/course/categories.php b/course/categories.php
index 53018d14b28..7e01d51c3dd 100644
--- a/course/categories.php
+++ b/course/categories.php
@@ -21,6 +21,7 @@
$strcourses = get_string("courses");
$stredit = get_string("edit");
$strdelete = get_string("delete");
+ $straction = get_string("action");
$stradd = get_string("add");
print_header("$site->fullname: $strcategories", "$site->fullname",
@@ -95,7 +96,7 @@
/// Print the table of all categories
- $table->head = array ($strcategory, $strcourses, $strdelete);
+ $table->head = array ($strcategory, $strcourses, $straction);
$table->align = array ("LEFT", "CENTER", "CENTER");
$table->size = array ("50", "20", "20");
$table->width = 100;
@@ -109,7 +110,7 @@
$delete = "id\">$strdelete";
}
$table->data[] = array ("id\" VALUE=\"$category->name\" SIZE=30>",
- "$count", $delete);
+ "id\">$count", $delete);
}
$table->data[] = array ("", "", "$stradd");
print_table($table);