1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-15 05:00:06 +01:00

Remove deprecated function call.

This commit is contained in:
tjhunt 2009-07-22 07:05:57 +00:00
parent fb3611a567
commit 6acbb3192b

@ -371,7 +371,7 @@ class question_category_object {
$vars = new stdClass; $vars = new stdClass;
$vars->name = $category->name; $vars->name = $category->name;
$vars->count = $questionsincategory; $vars->count = $questionsincategory;
print_simple_box(get_string("categorymove", "quiz", $vars), "center"); print_box(get_string('categorymove', 'quiz', $vars), 'generalbox boxaligncenter');
$this->moveform->display(); $this->moveform->display();
} }