Skip to content

Commit

Permalink
Debug v21
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Nov 12, 2024
1 parent 2f207dd commit 5283a67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/exports/class/export.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public function conditionDate($Field, $Value, $Sens)
public function build_filterField($TypeField, $NameField, $ValueField)
{
// phpcs:enable
global $conf, $langs, $form;
global $langs, $form;

$szFilterField = '';
$InfoFieldList = explode(":", $TypeField);
Expand Down Expand Up @@ -610,7 +610,7 @@ public function build_filterField($TypeField, $NameField, $ValueField)
if (!empty($ValueField) && $ValueField == $obj->rowid) {
$szFilterField .= '<option value="'.$obj->rowid.'" selected data-html="'.dolPrintHTMLForAttribute($labeltoshow).'">'.dolPrintHTML($labeltoshow).'</option>';
} else {
$szFilterField .= '<option value="'.$obj->rowid.'" selected data-html="'.dolPrintHTMLForAttribute($labeltoshow).'">'.$labeltoshow.'</option>';
$szFilterField .= '<option value="'.$obj->rowid.'" data-html="'.dolPrintHTMLForAttribute($labeltoshow).'">'.$labeltoshow.'</option>';
}
$i++;
}
Expand Down

0 comments on commit 5283a67

Please sign in to comment.