mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Add a space after the foreach
This commit is contained in:
@@ -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++;
|
||||
|
||||
@@ -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'])) {
|
||||
|
||||
@@ -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']++;
|
||||
|
||||
Reference in New Issue
Block a user