CRM-19470 - Notice Fix upon event registration
authorjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Wed, 12 Oct 2016 09:04:08 +0000 (14:34 +0530)
committerjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Wed, 12 Oct 2016 09:04:08 +0000 (14:34 +0530)
CRM/Price/BAO/PriceSet.php

index 3b651de7ebdf34eb8007bdcc90d47793c89d4910..36dc1dcd16a0262eee0d18ddc72236c9812e547a 100644 (file)
@@ -1722,7 +1722,7 @@ WHERE       ps.id = %1
     $priceSetParams = array();
     foreach ($params as $field => $value) {
       $parts = explode('_', $field);
-      if (count($parts) == 2 && $parts[0] == 'price' && is_numeric($parts[1])) {
+      if (count($parts) == 2 && $parts[0] == 'price' && is_numeric($parts[1]) && is_array($value)) {
         $priceSetParams[$field] = $value;
       }
     }