Skip to content

Commit

Permalink
Merge branch 'MDL-30158-m20' of git://github.com/ankitagarwal/moodle …
Browse files Browse the repository at this point in the history
…into MOODLE_20_STABLE
  • Loading branch information
stronk7 committed Nov 9, 2011
2 parents cc13ca3 + d90316f commit 81a95b0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions question/format/blackboard/format.php
Expand Up @@ -107,7 +107,6 @@ function process_tf($xml, &$questions) {
if ($ishtml) {
$question->questiontext = html_entity_decode(trim($thisquestion["#"]["BODY"][0]["#"]["TEXT"][0]["#"]),ENT_QUOTES,'UTF-8');
}
$question->questiontext = $question->questiontext;
// put name in question object
$question->name = shorten_text($question->questiontext, 254);

Expand Down Expand Up @@ -160,7 +159,6 @@ function process_mc($xml, &$questions) {
if ($ishtml) {
$question->questiontext = html_entity_decode(trim($thisquestion["#"]["BODY"][0]["#"]["TEXT"][0]["#"]),ENT_QUOTES,'UTF-8');
}
$question->questiontext = $question->questiontext;

// put name of question in question object, careful of length
$question->name = shorten_text($question->questiontext, 254);
Expand Down Expand Up @@ -226,7 +224,6 @@ function process_ma($xml, &$questions) {
if ($ishtml) {
$question->questiontext = html_entity_decode(trim($thisquestion["#"]["BODY"][0]["#"]["TEXT"][0]["#"]),ENT_QUOTES,'UTF-8');
}
$question->questiontext = $question->questiontext;
// put name of question in question object
$question->name = shorten_text($question->questiontext, 254);

Expand Down Expand Up @@ -290,7 +287,6 @@ function process_fib($xml, &$questions) {
if ($ishtml) {
$question->questiontext = html_entity_decode(trim($thisquestion["#"]["BODY"][0]["#"]["TEXT"][0]["#"]),ENT_QUOTES,'UTF-8');
}
$question->questiontext = $question->questiontext;
// put name of question in question object
$question->name = shorten_text($question->questiontext, 254);

Expand Down Expand Up @@ -344,7 +340,6 @@ function process_matching($xml, &$questions) {
if ($ishtml) {
$question->questiontext = html_entity_decode(trim($thisquestion["#"]["BODY"][0]["#"]["TEXT"][0]["#"]),ENT_QUOTES,'UTF-8');
}
$question->questiontext = $question->questiontext;
// put name of question in question object
$question->name = shorten_text($question->questiontext, 254);

Expand Down

0 comments on commit 81a95b0

Please sign in to comment.