Updated issue_template

This commit is contained in:
Jeroen De Meerleer 2019-02-12 14:11:58 +01:00
parent 97d5abec62
commit 74e49dca20
2 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,5 @@
((Note: Please write in English))
((Short description of the issue in issue title))
(Description of the issue)
@ -23,4 +24,10 @@
### PHP version
(PHP-version you encountered the issue with)
(PHP-version you encountered the issue with)
### SWS File
((Note: You cannot upload sws-files directly. Please zip it first))
(link to download of your wrong sws-file)

View File

@ -34,6 +34,7 @@ use JeroenED\Libpairtwo\Models\Sws as SwsModel;
use JeroenED\Libpairtwo\Enums\TournamentSystem;
use DateTime;
/**
* This class reads a SWS file
*
@ -519,10 +520,11 @@ class Sws extends SwsModel
{
switch ($type) {
case 'String':
if (trim($data) == '') {
$data = trim($data);
if ($data == '') {
return (is_null($default)) ? '' : $default;
}
return trim($data);
return $data;
break;
case 'Hex':
case 'Int':