diff --git a/htdocs/admin/company.php b/htdocs/admin/company.php
index f865c31fca0..3dc3b096a0a 100644
--- a/htdocs/admin/company.php
+++ b/htdocs/admin/company.php
@@ -665,7 +665,7 @@ else
print "\n";
print '';
print "\n";
@@ -684,12 +684,12 @@ else
$s.=' ';
if ($conf->use_javascript_ajax)
{
- $s.=''.$langs->trans("VATIntraCheck").'';
+ $s.=''.$langs->trans("VATIntraCheck").'';
print $form->textwithpicto($s,$langs->trans("VATIntraCheckDesc",$langs->trans("VATIntraCheck")),1);
}
else
{
- print $s.'id_pays).'" target="_blank" alt="'.$langs->trans("VATIntraCheckableOnEUSite").'">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
+ print $s.'id_pays).'" target="_blank">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
}
}
else
diff --git a/htdocs/admin/modules.php b/htdocs/admin/modules.php
index 16ad0347afc..855f5fae6ea 100644
--- a/htdocs/admin/modules.php
+++ b/htdocs/admin/modules.php
@@ -420,12 +420,20 @@ foreach ($orders as $key => $value)
// Name
print '
'.$objMod->getName();
- print " | \n ";
- print nl2br($objMod->getDesc());
- print " | \n ";
- print $objMod->getVersion();
- print " | \n ";
+ print " | \n";
+ // Desc
+ print "";
+ print nl2br($objMod->getDesc());
+ print " | \n";
+
+ // Version
+ print "";
+ print $objMod->getVersion();
+ print " | \n";
+
+ // Tick
+ print "";
if (! empty($conf->global->$const_name))
{
print img_tick();
diff --git a/htdocs/lib/company.lib.php b/htdocs/lib/company.lib.php
index 2852a6fccf0..3933f01bf10 100644
--- a/htdocs/lib/company.lib.php
+++ b/htdocs/lib/company.lib.php
@@ -405,7 +405,7 @@ function show_actions_todo($conf,$langs,$db,$objsoc,$objcon='')
$obj = $db->fetch_object($result);
print " | ";
- print '| '.dol_print_date($obj->dp,'dayhour')." | \n";
+ print ''.dol_print_date($obj->dp,'dayhour')." | \n";
// Picto warning
print '';
@@ -415,7 +415,7 @@ function show_actions_todo($conf,$langs,$db,$objsoc,$objcon='')
if ($obj->propalrowid)
{
- print ' | '.img_object($langs->trans("ShowAction"),"task");
+ print ' | '.img_object($langs->trans("ShowAction"),"task");
$transcode=$langs->trans("Action".$obj->acode);
$libelle=($transcode!="Action".$obj->acode?$transcode:$obj->libelle);
print $libelle;
@@ -599,7 +599,7 @@ function show_actions_done($conf,$langs,$db,$objsoc,$objcon='')
print "";
// Champ date
- print '| '.dol_print_date($histo[$key]['date'],'dayhour')." | \n";
+ print ''.dol_print_date($histo[$key]['date'],'dayhour')." | \n";
// Picto
print ' | ';
diff --git a/htdocs/soc.php b/htdocs/soc.php
index 5b469889bce..c919099c0c4 100644
--- a/htdocs/soc.php
+++ b/htdocs/soc.php
@@ -572,7 +572,7 @@ $_GET["action"] == 'create' || $_POST["action"] == 'create')
print "\n";
print '';
print "\n";
@@ -584,12 +584,12 @@ $_GET["action"] == 'create' || $_POST["action"] == 'create')
$s.=' ';
if ($conf->use_javascript_ajax)
{
- $s.=''.$langs->trans("VATIntraCheck").'';
+ $s.=''.$langs->trans("VATIntraCheck").'';
print $form->textwithpicto($s,$langs->trans("VATIntraCheckDesc",$langs->trans("VATIntraCheck")),1);
}
else
{
- print $s.'id_pays).'" target="_blank" alt="'.$langs->trans("VATIntraCheckableOnEUSite").'">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
+ print $s.'id_pays).'" target="_blank">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
}
print '';
@@ -892,7 +892,7 @@ elseif ($_GET["action"] == 'edit' || $_POST["action"] == 'edit')
print "\n";
print '';
print "\n";
@@ -904,12 +904,12 @@ elseif ($_GET["action"] == 'edit' || $_POST["action"] == 'edit')
$s.=' ';
if ($conf->use_javascript_ajax)
{
- $s.=''.$langs->trans("VATIntraCheck").'';
+ $s.=''.$langs->trans("VATIntraCheck").'';
print $form->textwithpicto($s,$langs->trans("VATIntraCheckDesc",$langs->trans("VATIntraCheck")),1);
}
else
{
- print $s.'id_pays).'" target="_blank" alt="'.$langs->trans("VATIntraCheckableOnEUSite").'">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
+ print $s.'id_pays).'" target="_blank">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
}
print '';
print ' ';
@@ -1105,7 +1105,7 @@ else
print "\n";
print '';
print "\n";
@@ -1122,12 +1122,12 @@ else
$s.=' ';
if ($conf->use_javascript_ajax)
{
- $s.=''.$langs->trans("VATIntraCheck").'';
+ $s.=''.$langs->trans("VATIntraCheck").'';
print $form->textwithpicto($s,$langs->trans("VATIntraCheckDesc",$langs->trans("VATIntraCheck")),1);
}
else
{
- print $s.'id_pays).'" target="_blank" alt="'.$langs->trans("VATIntraCheckableOnEUSite").'">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
+ print $s.'id_pays).'" target="_blank">'.img_picto($langs->trans("VATIntraCheckableOnEUSite"),'help').'';
}
}
else
|