Fixing drift between CVS and git

This commit is contained in:
Moodle HQ git importer
2009-11-23 01:33:09 +00:00
parent dcb7585070
commit 2b7cefa2f5
12 changed files with 83 additions and 83 deletions
+2 -2
View File
@@ -921,9 +921,9 @@ class qformat_xml extends qformat_default {
case MULTIANSWER:
$a_count=1;
foreach($question->options->questions as $question) {
$thispattern = '/'.addslashes("{#".$a_count."}").'/';
$thispattern = addslashes("{#".$a_count."}");
$thisreplace = $question->questiontext;
$expout=preg_replace($thispattern, $thisreplace, $expout );
$expout=ereg_replace($thispattern, $thisreplace, $expout );
$a_count++;
}
break;