MDL-20636 fix some more coding style issues in the question code.

This commit is contained in:
Tim Hunt
2011-05-20 18:50:41 +01:00
parent 449bfe90c6
commit e0736817f0
24 changed files with 169 additions and 374 deletions
+4 -4
View File
@@ -36,9 +36,9 @@ defined('MOODLE_INTERNAL') || die();
class qformat_default {
public $displayerrors = true;
public $category = NULL;
public $category = null;
public $questions = array();
public $course = NULL;
public $course = null;
public $filename = '';
public $realfilename = '';
public $matchgrades = 'error';
@@ -602,7 +602,7 @@ class qformat_default {
$formatnotimplemented = get_string('formatnotimplemented', 'question');
echo "<p>$formatnotimplemented</p>";
return NULL;
return null;
}
/**
@@ -834,7 +834,7 @@ class qformat_default {
// if not overidden, then this is an error.
$formatnotimplemented = get_string('formatnotimplemented', 'question');
echo "<p>$formatnotimplemented</p>";
return NULL;
return null;
}
/**