diff --git a/htdocs/core/tpl/extrafields_list_print_fields.tpl.php b/htdocs/core/tpl/extrafields_list_print_fields.tpl.php
index adf90e204bb..00a22934f78 100644
--- a/htdocs/core/tpl/extrafields_list_print_fields.tpl.php
+++ b/htdocs/core/tpl/extrafields_list_print_fields.tpl.php
@@ -19,13 +19,8 @@ if (!empty($extrafieldsobjectkey) && !empty($extrafields->attributes[$extrafield
foreach ($extrafields->attributes[$extrafieldsobjectkey]['label'] as $key => $val) {
if (!empty($arrayfields[$extrafieldsobjectprefix.$key]['checked'])) {
- $align = $extrafields->getAlignFlag($key, $extrafieldsobjectkey);
- print '
';
+ $cssclass = $extrafields->getAlignFlag($key, $extrafieldsobjectkey);
+
$tmpkey = 'options_'.$key;
if (in_array($extrafields->attributes[$extrafieldsobjectkey]['type'][$key], array('date', 'datetime', 'timestamp')) && !is_numeric($obj->$tmpkey)) {
@@ -47,8 +42,16 @@ if (!empty($extrafieldsobjectkey) && !empty($extrafields->attributes[$extrafield
//var_dump($value);
}
- print $extrafields->showOutputField($key, $value, '', $extrafieldsobjectkey);
+ $valuetoshow = $extrafields->showOutputField($key, $value, '', $extrafieldsobjectkey);
+ $title = dol_string_nohtmltag($valuetoshow);
+
+ print ' | ';
+ print $valuetoshow;
print ' | ';
+
if (!$i) {
$totalarray['nbfield']++;
}
diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index 8aaa12c6562..d071e8f9921 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1094,7 +1094,7 @@ if (!empty($arrayfields['country.code_iso']['checked'])) {
if (!empty($arrayfields['typent.code']['checked'])) {
print '';
// We use showempty=0 here because there is already an unknown value into dictionary.
- print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 1, 0, 0, '', 0, 0, 0, (empty($conf->global->SOCIETE_SORT_ON_TYPEENT) ? 'ASC' : $conf->global->SOCIETE_SORT_ON_TYPEENT), 'minwidth50 maxwidth100', 1);
+ print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 1, 0, 0, '', 0, 0, 0, (empty($conf->global->SOCIETE_SORT_ON_TYPEENT) ? 'ASC' : $conf->global->SOCIETE_SORT_ON_TYPEENT), 'minwidth50 maxwidth125', 1);
print ' | ';
}
// Multiprice level
@@ -1508,11 +1508,13 @@ while ($i < min($num, $limit)) {
}
// Type ent
if (!empty($arrayfields['typent.code']['checked'])) {
- print '';
if (!isset($typenArray) || !is_array($typenArray) || count($typenArray) == 0) {
$typenArray = $formcompany->typent_array(1);
}
- print empty($typenArray[$obj->typent_code]) ? '' : $typenArray[$obj->typent_code];
+ $labeltypeofcompany= empty($typenArray[$obj->typent_code]) ? '' : $typenArray[$obj->typent_code];
+
+ print ' | ';
+ print dol_escape_htmltag($labeltypeofcompany);
print ' | ';
if (!$i) {
$totalarray['nbfield']++;
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 37915d91da5..bd4ebed0b49 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -2714,7 +2714,6 @@ table.login_table_securitycode tr td {
div.login_block {
top: 0;
- border-right: 1px solid rgba(0,0,0,0.3);
padding-top: 3px;
padding-bottom: 3px;
: 0;
@@ -6826,6 +6825,7 @@ div.clipboardCPValue.hidewithsize {
@media only screen and (max-width: 570px)
{
div.login_block {
+ border-right: 1px solid rgba(0,0,0,0.3);
top: auto;
}