Do not enter question loop if there are no questions
This commit is contained in:
parent
ed728833da
commit
f717449bef
1 changed files with 10 additions and 8 deletions
|
@ -143,6 +143,7 @@ if (file_exists($questionfile)) {
|
||||||
|
|
||||||
$questionsection = $questions->documentElement->getElementsByTagName("questions")->item(0);
|
$questionsection = $questions->documentElement->getElementsByTagName("questions")->item(0);
|
||||||
|
|
||||||
|
if ($questionsection) {
|
||||||
foreach ($questionsection->getElementsByTagName("question") as $question) {
|
foreach ($questionsection->getElementsByTagName("question") as $question) {
|
||||||
$questiontext = $question->getElementsByTagName("questiontext")->item(0);
|
$questiontext = $question->getElementsByTagName("questiontext")->item(0);
|
||||||
$newquestiontext = strip_tags(html_entity_decode($questiontext->textContent));
|
$newquestiontext = strip_tags(html_entity_decode($questiontext->textContent));
|
||||||
|
@ -154,6 +155,7 @@ if (file_exists($questionfile)) {
|
||||||
$answertext->nodeValue = htmlentities($newanswertext, ENT_XML1);
|
$answertext->nodeValue = htmlentities($newanswertext, ENT_XML1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$questions->save($questionfile);
|
$questions->save($questionfile);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue