Skip to content
Snippets Groups Projects
Commit 29a98fd2 authored by srosse's avatar srosse
Browse files

Merge remote-tracking branch 'origin/OpenOLAT_14.1'

parents 9d213adc 091b58d7
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ public class TextInputController extends FormBasicController implements Evaluati
if (textInput.isNumeric()) {
String val = singleRowEl.getValue();
if(StringHelper.containsNonWhitespace(val)) {
if (dbInstance.isMySQL() && val.length() > 65) {
if (dbInstance.isMySQL() && val.length() > 55) {
singleRowEl.setErrorKey("error.number.too.large", null);
allOk = false;
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment