You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$records = $app->db->queryAllRecords("SELECT directive_snippets_id, name FROM directive_snippets WHERE customer_viewable = 'y' AND type = ? ORDER BY name ASC", $server_type);
32
+
33
+
for ($i = 0, $c = count($records); $i < $c; $i++)
34
+
{
35
+
$records[$i]['is_selected'] = false;
36
+
37
+
if ($this->form->dataRecord['directive_snippets_id'] === $records[$i]['directive_snippets_id'])
0 commit comments