diff --git a/htdocs/admin/modulehelp.php b/htdocs/admin/modulehelp.php index ecbe14e76f4..05b76c9d6d5 100644 --- a/htdocs/admin/modulehelp.php +++ b/htdocs/admin/modulehelp.php @@ -371,7 +371,7 @@ if ($mode == 'feature') { $text .= '
'.$langs->trans("DependsOn").': '; if (is_array($objMod->depends) && count($objMod->depends)) { $i = 0; - foreach($objMod->depends as $modulestringorarray) { + foreach ($objMod->depends as $modulestringorarray) { if (is_array($modulestringorarray)) { $text .= ($i ? ', ' : '').join(', ', $modulestringorarray); } else { @@ -387,7 +387,7 @@ if ($mode == 'feature') { $text .= '
'.$langs->trans("RequiredBy").': '; if (is_array($objMod->requiredby) && count($objMod->requiredby)) { $i = 0; - foreach($objMod->requiredby as $modulestringorarray) { + foreach ($objMod->requiredby as $modulestringorarray) { if (is_array($modulestringorarray)) { $text .= ($i ? ', ' : '').join(', ', $modulestringorarray); } else {