From 5fef3398fd2e70a17ff9d3c8ce9b4185e1deb356 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sat, 14 Jan 2023 17:36:09 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/accountancy/admin/subaccount.php | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) 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;