Merge remote-tracking branch 'origin/3.5' into develop

Conflicts:
	htdocs/compta/facture.php
This commit is contained in:
Laurent Destailleur 2013-11-21 02:31:04 +01:00
commit f6f4f425af
2 changed files with 6 additions and 3 deletions

View File

@ -3859,7 +3859,7 @@ else if ($id > 0 || ! empty($ref))
{ {
/* /*
* Affiche formulaire mail * Affiche formulaire mail
*/ */
// By default if $action=='presend' // By default if $action=='presend'
$titreform='SendBillByMail'; $titreform='SendBillByMail';

View File

@ -268,8 +268,11 @@ else
// Country // Country
print '<tr><td>'.$langs->trans('Country').'</td><td colspan="3">'; print '<tr><td>'.$langs->trans('Country').'</td><td colspan="3">';
$img=picto_from_langcode($object->country_code); if (! empty($object->country_code))
print ($img?$img.' ':''); {
$img=picto_from_langcode($object->country_code);
print ($img?$img.' ':'');
}
print $object->country; print $object->country;
print '</td></tr>'; print '</td></tr>';