FIX getpost onlignsignname

This commit is contained in:
Anthony Berton 2023-02-28 21:58:55 +01:00
parent 5e8fc026cb
commit 31adaf3e29

View File

@ -59,7 +59,7 @@ $signature = GETPOST('signaturebase64');
$ref = GETPOST('ref', 'aZ09'); $ref = GETPOST('ref', 'aZ09');
$mode = GETPOST('mode', 'aZ09'); // 'proposal', ... $mode = GETPOST('mode', 'aZ09'); // 'proposal', ...
$SECUREKEY = GETPOST("securekey"); // Secure key $SECUREKEY = GETPOST("securekey"); // Secure key
$online_sign_name = GETPOST("onlinesignname"); $online_sign_name = GETPOST("onlinesignname") ? GETPOST("onlinesignname") : '';
$error = 0; $error = 0;
$response = ""; $response = "";