<em>@ericribellarsi 331432 wrote:</em><blockquote>Thanks Stork11, but it seems that the field will only accept 4 characters? How do we enter a larger number?</blockquote>
Hello ericribellarsi,
You can delete ‘maxlength=”4″‘ attribute of below input element in “administratorcomponentscom_jacommentviewsconfigstmplspamfilters.php”. Then you can input a large number there.
[PHP]<input type=”text” onkeypress=”return isNumberKey(event, this)” onkeyup=”checkValidKey(this.value,’max_length’)” maxlength=”4″ name=”spamfilters[max_length]” value=”<?php echo $this->params->get(‘max_length’, 300);?>” id=”max_length” size=”3″ onchange=”checkNumberCharacter(‘max’, this)”/>[/PHP]
Best regards.