make string of $seq, otherwise a 0 value can be set

This commit is contained in:
Uwe Steinmann 2021-05-11 17:20:08 +02:00
parent 2bc5ce80d7
commit 4d9a36b080

View File

@ -259,7 +259,7 @@ $(document).ready(function() {
'element'=>'input', 'element'=>'input',
'type'=>'hidden', 'type'=>'hidden',
'name'=>'sequence', 'name'=>'sequence',
'value'=>$seq, 'value'=>(string) $seq,
) )
); );
} }