Skip to content

Commit

Permalink
Fixed issue: Database error when survey title too long
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 6, 2021
1 parent 0449b4d commit c46c0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/surveyAdministration/tabCreate_view.php
Expand Up @@ -61,7 +61,7 @@
<div class="row">
<div class="form-group col-md-4 col-sm-6">
<label for="surveyTitle"><?= gt('Survey title')?></label>
<input type="text" class="form-control" name="surveyls_title" id="surveyTitle" required="required" >
<input type="text" class="form-control" name="surveyls_title" id="surveyTitle" required="required" maxlength="200">
</div>
<div class="form-group col-md-4 col-md-6">
<label for="createsample" class="control-label"><?= gt('Create example question group and question?')?></label>
Expand Down

0 comments on commit c46c0fd

Please sign in to comment.