From 6ceafdb00a70703f31b215379a95255dae2af8a6 Mon Sep 17 00:00:00 2001 From: Dan Poltawski Date: Tue, 19 Jun 2012 12:07:46 +0800 Subject: [PATCH] MDL-33808 - format title on the repository instance screen --- repository/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/lib.php b/repository/lib.php index c469833d66f..e629e721426 100644 --- a/repository/lib.php +++ b/repository/lib.php @@ -1253,7 +1253,7 @@ abstract class repository { } $type = repository::get_type_by_id($i->options['typeid']); - $table->data[] = array($i->name, $type->get_readablename(), $settings, $delete); + $table->data[] = array(format_string($i->name), $type->get_readablename(), $settings, $delete); //display a grey row if the type is defined as not visible if (isset($type) && !$type->get_visible()) {