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']."'"; }