From 89149c0dd480d5d495852bb9300a1cd7cf9aad7c Mon Sep 17 00:00:00 2001 From: Nate Date: Sat, 30 Nov 2019 18:48:39 -0700 Subject: [PATCH] Update call_flows.php --- .../resources/classes/call_flows.php | 32 +++++++++++++++---- 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/app/call_flows/resources/classes/call_flows.php b/app/call_flows/resources/classes/call_flows.php index 681802f834..d6460cd98e 100644 --- a/app/call_flows/resources/classes/call_flows.php +++ b/app/call_flows/resources/classes/call_flows.php @@ -1,10 +1,30 @@ + Portions created by the Initial Developer are Copyright (C) 2008 - 2019 + the Initial Developer. All Rights Reserved. + + Contributor(s): + Mark J Crane +*/ + +//define the call_flows class if (!class_exists('call_flows')) { class call_flows { @@ -69,7 +89,7 @@ if (!class_exists('call_flows')) { if (is_array($records) && @sizeof($records) != 0) { //filter out unchecked call flows, build where clause for below - foreach($records as $x => $record) { + foreach ($records as $x => $record) { if ($record['checked'] == 'true' && is_uuid($record['uuid'])) { $uuids[] = "'".$record['uuid']."'"; }