diff --git a/htdocs/accountancy/admin/subaccount.php b/htdocs/accountancy/admin/subaccount.php
index 2f6a731ca48..40055a4b75f 100644
--- a/htdocs/accountancy/admin/subaccount.php
+++ b/htdocs/accountancy/admin/subaccount.php
@@ -404,17 +404,15 @@ if ($resql) {
if (!empty($arrayfields['type']['checked'])) {
print '
';
$s = '';
-
+
// Customer
if ($obj->type == 1) {
$s .= ''.$langs->trans("Customer").'';
} elseif ($obj->type == 2) {
-
- // Supplier
+ // Supplier
$s .= ''.$langs->trans("Supplier").'';
} elseif ($obj->type == 3) {
-
- // User - Employee
+ // User - Employee
$s .= ''.$langs->trans("Employee").'';
}
print $s;
@@ -447,17 +445,15 @@ if ($resql) {
// Action
print ' | ';
$e = '';
-
+
// Customer
if ($obj->type == 1) {
$e .= ''.img_edit().'';
} elseif ($obj->type == 2) {
-
- // Supplier
+ // Supplier
$e .= ''.img_edit().'';
} elseif ($obj->type == 3) {
-
- // User - Employee
+ // User - Employee
$e .= ''.img_edit().'';
}
print $e;
|