Hello @LuisSP ,
I have the same problem.
My experience is that if the user's full name is ANSI-encoded (Windows-1252), the accents cause problems.
But if it's UTF-8 encoded, it works like a charm.
So accents can be used in case of UTF-8 encoding.
I tried it in a demo environment by modifying the /opt/CPUserCheckPortal/phpincs/web/actions/UserCheckIncidentDataAction.php file by adding this:
$UserID = utf8_encode($UserID);
@@ -38,6 +38,7 @@
if($UserID == NULL)
$UserID = "";
+ $UserID = utf8_encode($UserID);
$output = $this->GetIncidentData($IncidentID, $UserID, $UserLang, $GetCancelPage);
if (isset($output->Variables['product']) && $output->Variables['product'] == 'Threat Extraction')
{
But of course this is not a solution in a productive environment 😁