Merge branch 'ent-12086-giss-simbolo-en-bloque-de-modulo-de-tipo-dataserver-se-pierde-al-mover-agentes-a-otros-nodos' into 'develop'

fix error move agents to metaconsole pandora_enterprise#12086

See merge request artica/pandorafms!6661
This commit is contained in:
Rafael Ameijeiras 2023-12-01 10:06:51 +00:00
commit e52c596c82
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ function parseOtherParameter($other, $otherType, $rawDecode)
case 'url_encode':
$returnVar = [
'type' => 'string',
'data' => urldecode($other),
'data' => $rawDecode ? rawurldecode($other) : urldecode($other),
];
break;