diff --git a/htdocs/adherents/index.php b/htdocs/adherents/index.php index d1ae80378ee..1d1232a9d58 100644 --- a/htdocs/adherents/index.php +++ b/htdocs/adherents/index.php @@ -162,7 +162,7 @@ if ($conf->use_javascript_ajax) print '
| '.$langs->trans("Statistics").' | |||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| '; + print ' | |||||||||||||||||||||||||||||||||||||||||||||||
| '; $SommeA=0; $SommeB=0; diff --git a/htdocs/adherents/list.php b/htdocs/adherents/list.php index 35e1fd1553f..1d16f82ec04 100644 --- a/htdocs/adherents/list.php +++ b/htdocs/adherents/list.php @@ -441,17 +441,17 @@ if (! empty($arrayfields['d.ref']['checked'])) } if (! empty($arrayfields['d.civility']['checked'])) { - print ' | '; + print ' | '; print ' | '; } if (! empty($arrayfields['d.firstname']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.lastname']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.gender']['checked'])) @@ -463,17 +463,17 @@ if (! empty($arrayfields['d.gender']['checked'])) } if (! empty($arrayfields['d.company']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.login']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.morphy']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['t.libelle']['checked'])) @@ -486,18 +486,18 @@ if (! empty($arrayfields['t.libelle']['checked'])) if (! empty($arrayfields['d.address']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.zip']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.town']['checked'])) { - print ''; + print ' | '; print ' | '; } // State @@ -510,38 +510,38 @@ if (! empty($arrayfields['state.nom']['checked'])) // Country if (! empty($arrayfields['country.code_iso']['checked'])) { - print ''; + print ' | '; print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ' | '; } // Phone pro if (! empty($arrayfields['d.phone']['checked'])) { - print ''; + print ' | '; print ' | '; } // Phone perso if (! empty($arrayfields['d.phone_perso']['checked'])) { - print ''; + print ' | '; print ' | '; } // Phone mobile if (! empty($arrayfields['d.phone_mobile']['checked'])) { - print ''; + print ' | '; print ' | '; } // Email if (! empty($arrayfields['d.email']['checked'])) { - print ''; + print ' | '; print ' | '; } if (! empty($arrayfields['d.datefin']['checked'])) { - print ''; + print ' | '; print ' | '; } // Extra fields @@ -576,7 +576,7 @@ if (! empty($arrayfields['d.statut']['checked'])) print ''; } // Action column -print ''; +print ' | '; $searchpicto=$form->showFilterButtons(); print $searchpicto; print ' | '; @@ -647,7 +647,7 @@ while ($i < min($num, $limit)) if (! empty($conf->global->MAIN_SHOW_TECHNICAL_ID)) { - print ''.$obj->rowid.' | '; + print ''.$obj->rowid.' | '; if (! $i) $totalarray['nbfield']++; } @@ -753,7 +753,7 @@ while ($i < min($num, $limit)) // Country if (! empty($arrayfields['country.code_iso']['checked'])) { - print ''; + print ' | '; $tmparray=getCountry($obj->country, 'all'); print $tmparray['label']; print ' | '; @@ -794,7 +794,7 @@ while ($i < min($num, $limit)) { if ($datefin) { - print ''; + print ' | '; print dol_print_date($datefin, 'day'); if ($memberstatic->hasDelay()) { $textlate .= ' ('.$langs->trans("DateReference").' > '.$langs->trans("DateToday").' '.(ceil($conf->adherent->subscription->warning_delay/60/60/24) >= 0 ? '+' : '').ceil($conf->adherent->subscription->warning_delay/60/60/24).' '.$langs->trans("days").')'; @@ -804,7 +804,7 @@ while ($i < min($num, $limit)) } else { - print ' | '; + print ' | '; if ($obj->subscription == 'yes') { print $langs->trans("SubscriptionNotReceived"); @@ -826,7 +826,7 @@ while ($i < min($num, $limit)) // Date creation if (! empty($arrayfields['d.datec']['checked'])) { - print ' | '; + print ' | '; print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser'); print ' | '; if (! $i) $totalarray['nbfield']++; @@ -834,7 +834,7 @@ while ($i < min($num, $limit)) // Date modification if (! empty($arrayfields['d.tms']['checked'])) { - print ''; + print ' | '; print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser'); print ' | '; if (! $i) $totalarray['nbfield']++; @@ -848,7 +848,7 @@ while ($i < min($num, $limit)) if (! $i) $totalarray['nbfield']++; } // Action column - print ''; + print ' | '; if ($massactionbutton || $massaction) // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined { $selected=0; | |