Skip to content

Commit

Permalink
Minor bug with some unclosed tags solved.
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Sep 27, 2005
1 parent 644c927 commit af0b563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/resource/type/ims/resource.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,9 @@ function display() {
print_header();
$table = new stdClass;
if (empty($page)) {
$table->head[] = $resource->name.'</b></p>';
$table->head[] = '<b>'.$resource->name.'</b>';
} else {
$table->head[] = $items[$page]->title.'</b></p>';
$table->head[] = '<b>'.$items[$page]->title.'</b>';
}
$table->data[] = array(ims_generate_toc ($items, $resource, $page));
$table->width = '60%';
Expand Down

0 comments on commit af0b563

Please sign in to comment.