Skip to content

Commit

Permalink
Fixed issue #17007: bug on invitation+reminder dates when creating a …
Browse files Browse the repository at this point in the history
…new token using GUI

Dev: Removed extra spaced which were previously removed by a flattenText call. 
Dev: fix the view
  • Loading branch information
gabrieljenik committed Jan 28, 2021
1 parent c972abb commit 3875daf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/admin/token/tokenform.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
</div>
<?php endif; ?>
</div>
<input class='form-control hidden YesNoDateHidden' type='text' size='20' id='completed' name='completed' value="<?php if (isset($completed)) {echo $completed; } else {echo " N "; }?>" />
<input class='form-control hidden YesNoDateHidden' type='text' size='20' id='completed' name='completed' value="<?php if (isset($completed)) {echo $completed; } else {echo "N"; }?>" />
</div>

</div>
Expand Down Expand Up @@ -293,7 +293,7 @@
</div>
</div>
</div>
<input class='form-control hidden YesNoDateHidden' type='text' size='20' id='sent' name='sent' value="<?php if (isset($sent) && $sent!='N') {echo convertToGlobalSettingFormat($sent,true); } else {echo " N "; }?>" />
<input class='form-control hidden YesNoDateHidden' type='text' size='20' id='sent' name='sent' value="<?php if (isset($sent) && $sent!='N') {echo convertToGlobalSettingFormat($sent,true); } else {echo "N"; }?>" />
</div>
</div>
<div class="form-group">
Expand Down Expand Up @@ -339,7 +339,7 @@
</div>
</div>
</div>
<input class='form-control hidden YesNoDateHidden' type='text' size='20' id='remindersent' name='remindersent' value="<?php if (isset($remindersent) && $remindersent!='N') {echo convertToGlobalSettingFormat($remindersent,true); } else {echo " N "; }?>" />
<input class='form-control hidden YesNoDateHidden' type='text' size='20' id='remindersent' name='remindersent' value="<?php if (isset($remindersent) && $remindersent!='N') {echo convertToGlobalSettingFormat($remindersent,true); } else {echo "N"; }?>" />
</div>

<!-- Reminder count, Uses left -->
Expand Down

0 comments on commit 3875daf

Please sign in to comment.