Skip to content

Commit

Permalink
MDL-19796 upgraded calls to print_table, print_single_button, print_u…
Browse files Browse the repository at this point in the history
…ser_picture, print_container* and notice_yesno
  • Loading branch information
nicolasconnault committed Aug 20, 2009
1 parent 642816a commit 16fa745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filter/manage.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
echo "\n<div>\n";
echo '<input type="hidden" name="sesskey" value="' . sesskey() . '" />';

$table = new stdClass;
$table = new html_table();
$table->head = array(get_string('filter'), get_string('isactive', 'filters'));
$table->align = array('left', 'left');
if ($settingscol) {
Expand Down Expand Up @@ -195,7 +195,7 @@
$table->data[] = $row;
}

print_table($table);
echo $OUTPUT->table($table);
echo '<div class="buttons">' . "\n";
echo '<input type="submit" name="savechanges" value="' . get_string('savechanges') . '" />';
echo "\n</div>\n";
Expand Down

0 comments on commit 16fa745

Please sign in to comment.