remove instances where a pointer is used in a foreach loop for value (#7108)

This commit is contained in:
frytimo
2024-08-22 15:41:10 -03:00
committed by GitHub
parent 0583c5b429
commit 2cbb4dbc31
73 changed files with 170 additions and 170 deletions

View File

@@ -119,7 +119,7 @@
//add group_member to the users array
if (!empty($users)) {
foreach ($users as &$field) {
foreach ($users as $field) {
$field['group_member'] = 'false';
if (!empty($user_groups)) {
foreach($user_groups as $row) {
@@ -196,7 +196,7 @@
if (is_array($user_groups) && @sizeof($user_groups) != 0) {
$x = 0;
foreach ($user_groups as &$row) {
foreach ($user_groups as $row) {
echo "<tr class='list-row' href='".$list_row_url."'>";
if (permission_exists('group_member_delete')) {
echo " <td class='checkbox'>\n";

View File

@@ -96,7 +96,7 @@
unset($sql, $parameters);
if (is_array($result) && sizeof($result) != 0) {
foreach ($result as $x => &$row) {
foreach ($result as $x => $row) {
//define group permissions values
$domain_uuid = $row["domain_uuid"];
$permission_name = $row["permission_name"];

View File

@@ -33,7 +33,7 @@
//get the $apps array from the installed apps from the core and mod directories
$config_list = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_config.php");
$x = 0;
foreach ($config_list as &$config_path) {
foreach ($config_list as $config_path) {
include($config_path);
$x++;
}
@@ -130,7 +130,7 @@
//get the $apps array from the installed apps from the core and mod directories
$config_list = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_config.php");
$x = 0;
foreach ($config_list as &$config_path) {
foreach ($config_list as $config_path) {
include($config_path);
$x++;
}