Increase text lenght 20 to 30

This commit is contained in:
Knah 2016-03-24 15:49:15 +01:00
parent c59702b5c5
commit ee5f34d33a
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@
<div class="row" style="margin-top: 30px;"> <div class="row" style="margin-top: 30px;">
<p>This text goes on the back of your card</p> <p>This text goes on the back of your card</p>
<input type="text" name="msg" placeholder="For Work" maxlength="20" autocomplete="off"> <input type="text" name="msg" placeholder="For Work" maxlength="30" autocomplete="off">
</div> </div>
<div class="row" style="margin-top: 30px;"> <div class="row" style="margin-top: 30px;">

View File

@ -74,7 +74,7 @@ class RequestUtils
public static function parseText() public static function parseText()
{ {
if (isset($_POST['msg'])) { if (isset($_POST['msg'])) {
return substr($_POST['msg'], 0, 20); return substr($_POST['msg'], 0, 30);
} }
return ''; return '';
} }