Skip to content

Commit

Permalink
fix width td
Browse files Browse the repository at this point in the history
  • Loading branch information
atm-jonathan committed Jun 10, 2024
1 parent 048f7e3 commit 9b53c76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/contrat/card.php
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@
$line = new ContratLigne($db);
$line->id = $objp->rowid;
$line->fetch_optionals();
print $line->showOptionals($extrafields, 'view', array('class' => 'oddeven', 'style' => $moreparam, 'colspan' => $colspan), '', '', 1);
print $line->showOptionals($extrafields, 'view', array('class'=>'oddeven', 'style'=>$moreparam, 'colspan'=>$colspan, 'tdclass' => 'left'), '', '', 1);
}
} else {
// Line in mode update
Expand Down Expand Up @@ -1835,7 +1835,7 @@
$line = new ContratLigne($db);
$line->id = $objp->rowid;
$line->fetch_optionals();
print $line->showOptionals($extrafields, 'edit', array('style' => 'class="oddeven"', 'colspan' => $colspan), '', '', 1);
print $line->showOptionals($extrafields, 'edit', array('style'=>'class="oddeven"', 'colspan'=>$colspan, 'tdclass' => 'left'), '', '', 1);
}
}

Expand Down

0 comments on commit 9b53c76

Please sign in to comment.