From: tjhunt <tjhunt>
Date: Wed, 22 Jul 2009 07:05:57 +0000 (+0000)
Subject: Remove deprecated function call.
X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=6acbb3192b42abf46032da93b361ae6174c0fd89;p=moodle.git

Remove deprecated function call.
---

diff --git a/question/category_class.php b/question/category_class.php
index 95275559fa..9cb1e6c01c 100644
--- a/question/category_class.php
+++ b/question/category_class.php
@@ -371,7 +371,7 @@ class question_category_object {
         $vars = new stdClass;
         $vars->name = $category->name;
         $vars->count = $questionsincategory;
-        print_simple_box(get_string("categorymove", "quiz", $vars), "center");
+        print_box(get_string('categorymove', 'quiz', $vars), 'generalbox boxaligncenter');
         $this->moveform->display();
     }