mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-20 01:55:02 +00:00
remove instances where a pointer is used in a foreach loop for value (#7108)
This commit is contained in:
@@ -216,7 +216,7 @@ class event_socket {
|
||||
}
|
||||
|
||||
$cmd_array = explode("\n", $cmd);
|
||||
foreach ($cmd_array as &$value) {
|
||||
foreach ($cmd_array as $value) {
|
||||
fputs($this->fp, $value."\n");
|
||||
}
|
||||
fputs($this->fp, "\n"); //second line feed to end the headers
|
||||
|
||||
Reference in New Issue
Block a user