Skip to content

Commit

Permalink
Fixed issue: Missing information in question summary if question is e…
Browse files Browse the repository at this point in the history
…ncrypted
  • Loading branch information
c-schmitz committed Oct 22, 2021
1 parent 35996a5 commit 958f8a6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions application/views/questionAdministration/summary.php
Expand Up @@ -173,6 +173,25 @@
</tr>
<?php endif; ?>


<!-- Encrypted -->
<?php if (isset($question->encrypted)):?>
<tr>
<td>
<strong>
<?php eT("Encrypted:"); ?>
</strong>
</td>
<td>
<?php if ($question->encrypted == "Y") : ?>
<?php eT("Yes"); ?>
<?php else:?>
<?php eT("No"); ?>
<?php endif; ?>
</td>
</tr>
<?php endif; ?>

<!-- Condition for this question -->
<?php if (trim($question->relevance) != ''): ?>
<tr>
Expand Down

0 comments on commit 958f8a6

Please sign in to comment.