mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
remove instances where a pointer is used in a foreach loop for value (#7108)
This commit is contained in:
@@ -227,7 +227,7 @@ if (!empty($_POST) && empty($_POST["persistformvar"])) {
|
||||
|
||||
$time_zone_found = false;
|
||||
if (is_array($result) && sizeof($result) != 0) {
|
||||
foreach ($result as &$row) {
|
||||
foreach ($result as $row) {
|
||||
//get the dialplan_uuid
|
||||
$dialplan_uuid = $row["dialplan_uuid"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user