Skip to content

Commit

Permalink
Fixed issue #7908: When entering the token for a survey the text fiel…
Browse files Browse the repository at this point in the history
…d is readable
  • Loading branch information
c-schmitz committed Jul 14, 2016
1 parent 19a2976 commit 37e4c15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/views/surveys/enterToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
?>
</div>
<div class="col-xs-12 col-sm-6">
<?php echo CHtml::textField('token', '', array(
<?php echo CHtml::passwordField('token', '', array(
'class' => 'text form-control ' + '$sKpClass',
'id' => 'token'))
'id' => 'token'));
?>
<?php echo CHtml::hiddenField('sid', $iSurveyId, array('id' => 'sid')); ?>
<?php echo CHtml::hiddenField('lang', $sLangCode, array('id' => 'lang')); ?>
Expand Down

0 comments on commit 37e4c15

Please sign in to comment.