From ee5f34d33a2d2391b9e41899f5a75348e426cd93 Mon Sep 17 00:00:00 2001 From: Knah Date: Thu, 24 Mar 2016 15:49:15 +0100 Subject: [PATCH] Increase text lenght 20 to 30 --- resources/index.html | 2 +- src/RequestUtils.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/index.html b/resources/index.html index a2b6966..7853481 100644 --- a/resources/index.html +++ b/resources/index.html @@ -57,7 +57,7 @@

This text goes on the back of your card

- +
diff --git a/src/RequestUtils.php b/src/RequestUtils.php index 0a5de11..e93c6f4 100644 --- a/src/RequestUtils.php +++ b/src/RequestUtils.php @@ -74,7 +74,7 @@ class RequestUtils public static function parseText() { if (isset($_POST['msg'])) { - return substr($_POST['msg'], 0, 20); + return substr($_POST['msg'], 0, 30); } return ''; }