Skip to content

Commit

Permalink
Dev Small text fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Aug 19, 2022
1 parent 387a274 commit fddd9f8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -208,7 +208,7 @@
<?php $emailnotificationto = $oSurvey->emailnotificationto; ?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 content-right">
<label class=" control-label" for='emailnotificationto'><?php eT("Send basic admin notification email to:"); ?></label>
<label class=" control-label" for='emailnotificationto'><?php eT("Send basic notification email to:"); ?></label>
<input class="form-control inherit-edit <?php echo ($bShowInherited && $emailnotificationto === 'inherit' ? 'hide' : 'show'); ?>" type='<?php echo ($bShowInherited)?'text':'email'; ?>' size='50' id='emailnotificationto' name='emailnotificationto' value="<?php echo htmlspecialchars($emailnotificationto); ?>" data-inherit-value="inherit" data-saved-value="<?php echo $emailnotificationto; ?>"/>
<input class="form-control inherit-readonly <?php echo ($bShowInherited && $emailnotificationto === 'inherit' ? 'show' : 'hide'); ?>" type='text' size='50' value="<?php echo htmlspecialchars($oSurveyOptions->emailnotificationto); ?>" readonly />
</div>
Expand All @@ -232,7 +232,7 @@
<?php $emailresponseto = $oSurvey->emailresponseto; ?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 content-right">
<label class=" control-label" for='emailresponseto'><?php eT("Send detailed admin notification email to:"); ?></label>
<label class=" control-label" for='emailresponseto'><?php eT("Send detailed notification email to:"); ?></label>
<input class="form-control inherit-edit <?php echo ($bShowInherited && $emailresponseto === 'inherit' ? 'hide' : 'show'); ?>" type='<?php echo ($bShowInherited)?'text':'email'; ?>' size='50' id='emailresponseto' name='emailresponseto' value="<?php echo htmlspecialchars($emailresponseto); ?>" data-inherit-value="inherit" data-saved-value="<?php echo $emailresponseto; ?>"/>
<input class="form-control inherit-readonly <?php echo ($bShowInherited && $emailresponseto === 'inherit' ? 'show' : 'hide'); ?>" type='text' size='50' value="<?php echo htmlspecialchars($oSurveyOptions->emailresponseto); ?>" readonly />
</div>
Expand Down

0 comments on commit fddd9f8

Please sign in to comment.