From 120aa7c7130f10658b96e3a1f818643ed4ac219a Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Wed, 9 Jul 2014 12:51:08 +0400 Subject: [PATCH] fix orderType escape issue --- intaro.intarocrm/classes/general/ICrmOrderActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intaro.intarocrm/classes/general/ICrmOrderActions.php b/intaro.intarocrm/classes/general/ICrmOrderActions.php index 333c739b..205c7469 100755 --- a/intaro.intarocrm/classes/general/ICrmOrderActions.php +++ b/intaro.intarocrm/classes/general/ICrmOrderActions.php @@ -563,7 +563,7 @@ class ICrmOrderActions // new order $newOrderFields = array( 'LID' => $defaultSiteId, - 'PERSON_TYPE_ID' => $optionsOrderTypes[$order['orderType']], + 'PERSON_TYPE_ID' => ($optionsOrderTypes[$order['orderType']]) ? $optionsOrderTypes[$order['orderType']] : 1, 'PAYED' => 'N', 'CANCELED' => 'N', 'STATUS_ID' => 'N',