mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-04 02:43:48 +00:00
Update sip_profiles.php
This commit is contained in:
@@ -93,7 +93,7 @@
|
||||
$prep_statement = $db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
$sip_profiles = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||
foreach ($sip_profiles as &$row) { $row = array_map("escape", $row); }
|
||||
foreach ($sip_profiles as $key => $row) { $sip_profiles[$key] = array_map("escape", $row); }
|
||||
unset ($prep_statement, $sql);
|
||||
|
||||
//escape the search
|
||||
|
||||
Reference in New Issue
Block a user