This commit is contained in:
Roly Rudy Gutierrez Pinto
2015-11-19 12:01:31 -04:00
parent 681a6443f3
commit 57aa2f7860
2 changed files with 9 additions and 1 deletions

View File

@@ -752,6 +752,11 @@ function NewCase ($params)
$variables = $params->variables;
$field = array ();
if ($variables->name === "__POST_VARIABLES__") {
$field = G::json_decode($variables->value, true);
$variables = null;
}
if (is_object( $variables )) {
$field[$variables->name] = $variables->value;