Add a space after the foreach

This commit is contained in:
FusionPBX
2025-11-13 08:27:53 -07:00
committed by GitHub
parent 3af026a7c7
commit f3bbe8770e
3 changed files with 3 additions and 3 deletions

View File

@@ -472,7 +472,7 @@
}
//no permissions found add the defaults
foreach($apps as $app) {
foreach ($apps as $app) {
if (is_array($app['permissions'])) foreach ($app['permissions'] as $row) {
if (is_array($row['groups'])) foreach ($row['groups'] as $group) {
$x++;

View File

@@ -712,7 +712,7 @@
//if there are no groups listed in v_menu_item_groups under menu_item_uuid then add the default groups
if (is_array($apps)) {
$x = 0;
foreach($apps as $app) {
foreach ($apps as $app) {
if (is_array($apps)) {
foreach ($app['menu'] as $sub_row) {
if (isset($sub_row['groups'])) {

View File

@@ -389,7 +389,7 @@ class text {
}
//check every tag
foreach($apps as $app) {
foreach ($apps as $app) {
$language_totals['app_descriptions']['total']++;
foreach($app['menu'] as $menu_item) {
$language_totals['menu_items']['total']++;