diff --git a/htdocs/adherents/admin/adherent.php b/htdocs/adherents/admin/adherent.php
index cb1fdfac816..bf14ff09fcd 100644
--- a/htdocs/adherents/admin/adherent.php
+++ b/htdocs/adherents/admin/adherent.php
@@ -198,7 +198,7 @@ if ($conf->facture->enabled)
}
else
{
- print '
';
+ print ' | ';
print $langs->trans("WarningModuleNotActive",$langs->transnoentities("Module85Name"));
print ' | ';
}
diff --git a/htdocs/adherents/admin/website.php b/htdocs/adherents/admin/website.php
index 51aca179195..cad250a60d0 100644
--- a/htdocs/adherents/admin/website.php
+++ b/htdocs/adherents/admin/website.php
@@ -168,14 +168,14 @@ if (! empty($conf->global->MEMBER_ENABLE_PUBLIC))
print '';
print '| '.$langs->trans("Parameter").' | ';
- print ''.$langs->trans("Value").' | ';
+ print ''.$langs->trans("Value").' | ';
print "
\n";
// Force Type
$adht = new AdherentType($db);
print '| ';
print $langs->trans("ForceMemberType");
- print ' | ';
+ print ' | ';
$listofval = array(-1 => $langs->trans("Undefined"));
$listofval += $adht->liste_array();
$forcetype = $conf->global->MEMBER_NEWFORM_FORCETYPE ?: -1;
@@ -185,21 +185,21 @@ if (! empty($conf->global->MEMBER_ENABLE_PUBLIC))
// Amount
print ' |
| ';
print $langs->trans("DefaultAmount");
- print ' | ';
+ print ' | ';
print '';
print " |
\n";
// Can edit
print '| ';
print $langs->trans("CanEditAmount");
- print ' | ';
+ print ' | ';
print $form->selectyesno("MEMBER_NEWFORM_EDITAMOUNT",(! empty($conf->global->MEMBER_NEWFORM_EDITAMOUNT)?$conf->global->MEMBER_NEWFORM_EDITAMOUNT:0),1);
print " |
\n";
// Jump to an online payment page
print '| ';
print $langs->trans("MEMBER_NEWFORM_PAYONLINE");
- print ' | ';
+ print ' | ';
$listofval=array();
$listofval['-1']=$langs->trans('No');
$listofval['all']=$langs->trans('Yes').' ('.$langs->trans("VisitorCanChooseItsPaymentMode").')';
diff --git a/htdocs/adherents/stats/byproperties.php b/htdocs/adherents/stats/byproperties.php
index defbde2dce2..cc40a5a4120 100644
--- a/htdocs/adherents/stats/byproperties.php
+++ b/htdocs/adherents/stats/byproperties.php
@@ -119,7 +119,7 @@ else
print '';
print '';
print '| '.$langs->trans("Nature").' | ';
-print ''.$langs->trans("NbOfMembers").' | ';
+print ''.$langs->trans("NbOfMembers").' | ';
print ''.$langs->trans("LatestSubscriptionDate").' | ';
print ' ';
@@ -132,7 +132,7 @@ foreach ($data as $val)
$year = $val['year'];
print '';
print '| '.$memberstatic->getmorphylib($val['label']).' | ';
- print ''.$val['nb'].' | ';
+ print ''.$val['nb'].' | ';
print ''.dol_print_date($val['lastdate'],'dayhour').' | ';
print ' ';
$oldyear=$year;
diff --git a/htdocs/adherents/stats/geo.php b/htdocs/adherents/stats/geo.php
index 2175569b7ce..8da764179a4 100644
--- a/htdocs/adherents/stats/geo.php
+++ b/htdocs/adherents/stats/geo.php
@@ -286,7 +286,7 @@ if ($mode)
print '';
print '| '.$label.' | ';
if ($label2) print ''.$label2.' | ';
- print ''.$langs->trans("NbOfMembers").' | ';
+ print ''.$langs->trans("NbOfMembers").' | ';
print ''.$langs->trans("LastMemberDate").' | ';
print ' ';
@@ -297,7 +297,7 @@ if ($mode)
print '';
print '| '.$val['label'].' | ';
if ($label2) print ''.$val['label2'].' | ';
- print ''.$val['nb'].' | ';
+ print ''.$val['nb'].' | ';
print ''.dol_print_date($val['lastdate'],'dayhour').' | ';
print ' ';
$oldyear=$year;
diff --git a/htdocs/adherents/stats/index.php b/htdocs/adherents/stats/index.php
index feebd776d94..e9866d20f1a 100644
--- a/htdocs/adherents/stats/index.php
+++ b/htdocs/adherents/stats/index.php
@@ -171,9 +171,9 @@ print '';
print ' ';
print '';
print '| '.$langs->trans("Year").' | ';
-print ''.$langs->trans("NbOfSubscriptions").' | ';
-print ''.$langs->trans("AmountTotal").' | ';
-print ''.$langs->trans("AmountAverage").' | ';
+print ''.$langs->trans("NbOfSubscriptions").' | ';
+print ''.$langs->trans("AmountTotal").' | ';
+print ''.$langs->trans("AmountAverage").' | ';
print ' ';
$oldyear=0;
@@ -189,9 +189,9 @@ foreach ($data as $val)
print $oldyear;
print '';
print '';
- print '0 | ';
- print '0 | ';
- print '0 | ';
+ print '0 | ';
+ print '0 | ';
+ print '0 | ';
print '';
}
print '';
@@ -200,9 +200,9 @@ foreach ($data as $val)
print $year;
//print '';
print '';
- print '| '.$val['nb'].' | ';
- print ''.price(price2num($val['total'],'MT'),1).' | ';
- print ''.price(price2num($val['avg'],'MT'),1).' | ';
+ print ''.$val['nb'].' | ';
+ print ''.price(price2num($val['total'],'MT'),1).' | ';
+ print ''.price(price2num($val['avg'],'MT'),1).' | ';
print ' ';
$oldyear=$year;
}
|