Skip to content
Snippets Groups Projects
Commit 7851587a authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Merge pull request #1869 from FHenry/3.6

Extrafield feature select from table should try to translate multiple column when not needed 
parents 5a93a762 85cabbf9
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ For users: ...@@ -17,6 +17,7 @@ For users:
- Fix: Salaries payment - Field date value is now required and add control on it. - Fix: Salaries payment - Field date value is now required and add control on it.
- Fix: Iban was used instead of Bic into SEPA file. - Fix: Iban was used instead of Bic into SEPA file.
- Fix: Must unaccent strings into SEPA file. - Fix: Must unaccent strings into SEPA file.
- Fix: Extrafield feature select from table should try to translate multiple column when not needed
***** ChangeLog for 3.6 compared to 3.5.* ***** ***** ChangeLog for 3.6 compared to 3.5.* *****
For users: For users:
......
...@@ -976,7 +976,7 @@ class ExtraFields ...@@ -976,7 +976,7 @@ class ExtraFields
// Several field into label (eq table:code|libelle:rowid) // Several field into label (eq table:code|libelle:rowid)
$fields_label = explode('|',$InfoFieldList[1]); $fields_label = explode('|',$InfoFieldList[1]);
if(is_array($fields_label)) if(is_array($fields_label) && count($fields_label)>1)
{ {
foreach ($fields_label as $field_toshow) foreach ($fields_label as $field_toshow)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment