Skip to content

Commit

Permalink
MDL-33808 - format title on the repository instance screen
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Jun 19, 2012
1 parent 4a35940 commit 6ceafdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repository/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ public static function display_instances_list($context, $typename = null) {
}

$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()) {
Expand Down

0 comments on commit 6ceafdb

Please sign in to comment.