diff --git a/htdocs/adherents/subscription.php b/htdocs/adherents/subscription.php index f49d743a372..f1b5556e385 100644 --- a/htdocs/adherents/subscription.php +++ b/htdocs/adherents/subscription.php @@ -4,7 +4,7 @@ * Copyright (C) 2004-2018 Laurent Destailleur * Copyright (C) 2012-2017 Regis Houssin * Copyright (C) 2015-2016 Alexandre Spangaro - * Copyright (C) 2018-2023 Frédéric France + * Copyright (C) 2018-2024 Frédéric France * Copyright (C) 2019 Thibault FOUCART * Copyright (C) 2023 Waël Almoman * @@ -1111,7 +1111,7 @@ if (($action == 'addsubscription' || $action == 'create_thirdparty') && $user->h // Bank account print ''.$langs->trans("FinancialAccount").''; - print img_picto('', 'bank_account'); + print img_picto('', 'bank_account', 'class="pictofixedwidth"'); $form->select_comptes(GETPOST('accountid'), 'accountid', 0, '', 2, '', 0, 'minwidth200'); print "\n"; diff --git a/htdocs/compta/localtax/card.php b/htdocs/compta/localtax/card.php index 9b3ec6e2544..0a6e43cded5 100644 --- a/htdocs/compta/localtax/card.php +++ b/htdocs/compta/localtax/card.php @@ -1,7 +1,7 @@ * Copyright (C) 2015 Marcos García - * Copyright (C) 2018 Frédéric France + * Copyright (C) 2018-2024 Frédéric France * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -187,7 +187,7 @@ if ($action == 'create') { // Bank account print ''.$langs->trans("BankAccount").''; - print img_picto('', 'bank_account', 'pictofixedwidth'); + print img_picto('', 'bank_account', 'class="pictofixedwidth"'); $form->select_comptes(GETPOSTINT("accountid"), "accountid", 0, "courant=1", 2, '', 0, 'maxwidth500 widthcentpercentminusx'); // Affiche liste des comptes courant print ''; diff --git a/htdocs/compta/paiement.php b/htdocs/compta/paiement.php index 1d549dc2d02..c0428ef8971 100644 --- a/htdocs/compta/paiement.php +++ b/htdocs/compta/paiement.php @@ -511,7 +511,7 @@ if ($action == 'create' || $action == 'confirm_paiement' || $action == 'add_paie } print ''; - print img_picto('', 'bank_account'); + print img_picto('', 'bank_account', 'class="pictofixedwidth"'); print $form->select_comptes($accountid, 'accountid', 0, '', 2, '', 0, 'widthcentpercentminusx maxwidth500', 1); print ''; } else { diff --git a/htdocs/compta/paiement_vat.php b/htdocs/compta/paiement_vat.php index ecb946e6686..a81c7034da8 100644 --- a/htdocs/compta/paiement_vat.php +++ b/htdocs/compta/paiement_vat.php @@ -215,7 +215,7 @@ if ($action == 'create') { print ''; print ''.$langs->trans('AccountToDebit').''; print ''; - print img_picto('', 'bank_account', 'pictofixedwidth'); + print img_picto('', 'bank_account', 'class="pictofixedwidth"'); $form->select_comptes(GETPOSTINT("accountid") ? GETPOSTINT("accountid") : $tva->accountid, "accountid", 0, '', 1, '', 0, 'maxwidth500 widthcentpercentminusx'); // Show opend bank account list print ''; diff --git a/htdocs/compta/tva/card.php b/htdocs/compta/tva/card.php index b1ff1585bc6..59560c1373d 100644 --- a/htdocs/compta/tva/card.php +++ b/htdocs/compta/tva/card.php @@ -487,7 +487,7 @@ if ($action == 'create') { if (isModEnabled("bank")) { // Bank account print ''.$langs->trans("BankAccount").''; - print img_picto('', 'bank_account', 'pictofixedwidth'); + print img_picto('', 'bank_account', 'class="pictofixedwidth"'); $form->select_comptes(GETPOSTINT("accountid"), "accountid", 0, "courant=1", 1, '', 0, 'maxwidth500 widthcentpercentminusx'); // List of bank account available print ''; }