Skip to content

Commit

Permalink
Fixed issue #10242: Reordernig can be broken with some HTML in question
Browse files Browse the repository at this point in the history
Dev: fix the HTML
  • Loading branch information
Shnoulle committed Feb 3, 2016
1 parent 116d8ad commit 9130466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/surveyadmin.php
Expand Up @@ -1305,7 +1305,7 @@ private function _showReorderForm($iSurveyID)
$relevance = ($q['relevance'] == '') ? 1 : $q['relevance'];
$question = '[{' . $relevance . '}] ' . $q['question'];
LimeExpressionManager::ProcessString($question, $q['qid']);
$q['question'] = LimeExpressionManager::GetLastPrettyPrintExpression();
$q['question'] = viewHelper::stripTagsEM(LimeExpressionManager::GetLastPrettyPrintExpression());
$q['gid'] = $aGroup['gid'];
$qs[] = $q;
}
Expand Down

0 comments on commit 9130466

Please sign in to comment.