Customer portal : Autocomplete field was not updating dependant fields.

SVN:trunk[4188]
This commit is contained in:
Guillaume Lajarige
2016-06-08 12:25:10 +00:00
parent 4c59d64025
commit cb0fa2a5c8
7 changed files with 99 additions and 10 deletions

View File

@@ -43,7 +43,14 @@ abstract class FormManager
static function FromJSON($sJson)
{
// Overload in child class when needed
$aJson = json_decode($sJson, true);
if (is_array($sJson))
{
$aJson = $sJson;
}
else
{
$aJson = json_decode($sJson, true);
}
$oFormManager = new static();