Skip to content

Commit

Permalink
MDL-19822 Migrated calls to print_heading
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Aug 6, 2009
1 parent 3c15938 commit f7a1496
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions search/query.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
}

print_box_start();
print_heading($strquery);
echo $OUTPUT->heading($strquery);

print_box_start();

Expand Down Expand Up @@ -380,4 +380,4 @@
}
print_box_end();
print_footer();
?>
?>
6 changes: 3 additions & 3 deletions search/stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
/// keep things pretty, even if php5 isn't available

print_box_start();
print_heading($strquery);
echo $OUTPUT->heading($strquery);

print_box_start();

Expand Down Expand Up @@ -107,7 +107,7 @@
$spacer = new html_image();
$spacer->height = 20;
echo $OUTPUT->spacer(clone($spacer)) . '<br />';
print_heading($solutionsstr);
echo $OUTPUT->heading($solutionsstr);

unset($admin_table->data);
if (isset($errors['dir'])) {
Expand Down Expand Up @@ -160,7 +160,7 @@

}

print_heading($databasestatestr);
echo $OUTPUT->heading($databasestatestr);
print_table($table);

print_box_end();
Expand Down

0 comments on commit f7a1496

Please sign in to comment.