Skip to content

Commit

Permalink
Debug v19
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Dec 5, 2023
1 parent 13ab817 commit 236e96f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion htdocs/core/boxes/box_factures.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public function loadBox($max = 5)
if ($num == 0) {
$this->info_box_contents[$line][0] = array(
'td' => 'class="center"',
'text'=>$langs->trans("NoRecordedInvoices"),
'text'=> '<span class="opacitymedium">'.$langs->trans("NoRecordedInvoices").'</span>',
);
}

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/boxes/box_factures_fourn.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function loadBox($max = 5)
if ($num == 0) {
$this->info_box_contents[$line][0] = array(
'td' => 'class="center"',
'text'=>$langs->trans("NoModifiedSupplierBills"),
'text'=> '<span class="opacitymedium">'.$langs->trans("NoModifiedSupplierBills").'</span>',
);
}

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/boxes/box_supplier_orders.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public function loadBox($max = 5)
if ($num == 0) {
$this->info_box_contents[$line][] = array(
'td' => 'class="center"',
'text' => $langs->trans("NoSupplierOrder"),
'text' => '<span class="opacitymedium">'.$langs->trans("NoSupplierOrder").'</span>',
);
}

Expand Down

0 comments on commit 236e96f

Please sign in to comment.