MDL-20636 A few more publics.

This commit is contained in:
Tim Hunt
2011-03-23 16:40:19 +00:00
parent c7df5006b9
commit 7348402f33
+3 -3
View File
@@ -262,7 +262,7 @@ class qformat_default {
* Perform any required pre-processing
* @return bool success
*/
protected function importpreprocess() {
public function importpreprocess() {
return true;
}
@@ -272,7 +272,7 @@ class qformat_default {
* @param object $category
* @return bool success
*/
protected function importprocess($category) {
public function importprocess($category) {
global $USER, $CFG, $DB, $OUTPUT;
$context = $category->context;
@@ -610,7 +610,7 @@ class qformat_default {
* Override if any post-processing is required
* @return bool success
*/
protected function importpostprocess() {
public function importpostprocess() {
return true;
}