Skip to content

Commit

Permalink
Fixed issue #T1398: Send reminders - Inputs have wrong size (#2103)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedirtypanda committed Oct 27, 2021
1 parent cabed52 commit 974a09f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 4 additions & 1 deletion application/controllers/admin/tokens.php
Expand Up @@ -2757,9 +2757,12 @@ protected function getSubAction()

/**
* This method echos HTML and ends.
* @param int $iSurveyId
* @param array $aSurveyLangs
* @param array $aData
* @return void
*/
protected function showInviteOrReminderEmailForm($iSurveyId, $aSurveyLangs, $aData)
protected function showInviteOrReminderEmailForm(int $iSurveyId, array $aSurveyLangs, array $aData)
{
$SQLemailstatuscondition = $this->getSQLemailstatuscondition();
$sSubAction = $this->getSubAction();
Expand Down
10 changes: 6 additions & 4 deletions application/views/admin/token/remind.php
Expand Up @@ -46,20 +46,22 @@
?>
</div>
</div>


<!-- Min days between reminders -->
<div class='form-group'>
<label class='control-label ' for='minreminderdelay'><?php eT("Min days between reminders:"); ?></label>
<div class=''>
<?php echo CHtml::textField('minreminderdelay'); ?>
<input type="text" id="minreminderdelay" class="form-control" size="25" value="" name="minreminderdelay" style="width: 50%;">
</div>
</div>
</div>
<div class="col-sm-6">
<div class='form-group'>

<!-- Max reminders -->
<div class='form-group'>
<label class='control-label ' for='maxremindercount'><?php eT("Max reminders:"); ?></label>
<div class=''>
<?php echo CHtml::textField('maxremindercount'); ?>
<input type="text" id="maxremindercount" class="form-control" size="25" value="" name="maxremindercount" style="width: 50%;" />
</div>
</div>

Expand Down

0 comments on commit 974a09f

Please sign in to comment.