Update html.form.class.php

This commit is contained in:
frederic34 2014-07-23 09:49:58 +02:00
parent 76f72d5bcc
commit 5ef626813c

View File

@ -2512,7 +2512,7 @@ class Form
require_once DOL_DOCUMENT_ROOT .'/compta/bank/class/account.class.php'; require_once DOL_DOCUMENT_ROOT .'/compta/bank/class/account.class.php';
$bankstatic=new Account($this->db); $bankstatic=new Account($this->db);
$bankstatic->fetch($selected); $bankstatic->fetch($selected);
print $bankstatic->label.' ('.$bankstatic->currency_code.')'; print $this->textwithpicto($bankstatic->label,$langs->trans("AccountCurrency").' '.$bankstatic->currency_code);
} else { } else {
print " "; print " ";
} }