Merge branch 'MDL-30760_21' of git://github.com/timhunt/moodle into MOODLE_21_STABLE
This commit is contained in:
@@ -42,6 +42,8 @@ require_once(dirname(__FILE__) . '/../type/questiontypebase.php');
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
abstract class question_bank {
|
||||
const MAX_SUMMARY_LENGTH = 65000;
|
||||
|
||||
/** @var array question type name => question_type subclass. */
|
||||
private static $questiontypes = array();
|
||||
|
||||
|
||||
@@ -89,6 +89,11 @@ class question_engine_data_mapper {
|
||||
$record->minfraction = $qa->get_min_fraction();
|
||||
$record->flagged = $qa->is_flagged();
|
||||
$record->questionsummary = $qa->get_question_summary();
|
||||
if (textlib::strlen($record->questionsummary) > question_bank::MAX_SUMMARY_LENGTH) {
|
||||
// It seems some people write very long quesions! MDL-30760
|
||||
$record->questionsummary = textlib::substr($record->questionsummary,
|
||||
0, question_bank::MAX_SUMMARY_LENGTH - 3) . '...';
|
||||
}
|
||||
$record->rightanswer = $qa->get_right_answer_summary();
|
||||
$record->responsesummary = $qa->get_response_summary();
|
||||
$record->timemodified = time();
|
||||
|
||||
@@ -245,6 +245,11 @@ class question_engine_attempt_upgrader {
|
||||
$qa = $qas[$questionid];
|
||||
$qa->questionusageid = $attempt->uniqueid;
|
||||
$qa->slot = $i;
|
||||
if (textlib::strlen($qa->questionsummary) > question_bank::MAX_SUMMARY_LENGTH) {
|
||||
// It seems some people write very long quesions! MDL-30760
|
||||
$qa->questionsummary = textlib::substr($qa->questionsummary,
|
||||
0, question_bank::MAX_SUMMARY_LENGTH - 3) . '...';
|
||||
}
|
||||
$this->insert_record('question_attempts', $qa);
|
||||
$layout[$questionkeys[$questionid]] = $qa->slot;
|
||||
|
||||
|
||||
@@ -407,7 +407,7 @@ function qtype_multianswer_extract_question($text) {
|
||||
&& preg_match('~'.NUMERICAL_ALTERNATIVE_REGEX.'~',
|
||||
$altregs[ANSWER_ALTERNATIVE_REGEX_ANSWER], $numregs)) {
|
||||
$wrapped->answer[] = $numregs[NUMERICAL_CORRECT_ANSWER];
|
||||
if ($numregs[NUMERICAL_ABS_ERROR_MARGIN]) {
|
||||
if (array_key_exists(NUMERICAL_ABS_ERROR_MARGIN, $numregs)) {
|
||||
$wrapped->tolerance["$answerindex"] =
|
||||
$numregs[NUMERICAL_ABS_ERROR_MARGIN];
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user