Skip to content

Commit

Permalink
Fix for issue #10333
Browse files Browse the repository at this point in the history
paymentterm.class.php invalid SQL in fetch
  • Loading branch information
a-schild committed Jan 16, 2019
1 parent 6ca163c commit 7e3bfd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/compta/facture/class/paymentterm.class.php
Expand Up @@ -167,7 +167,7 @@ function fetch($id)
global $langs;
$sql = "SELECT";
$sql.= " t.rowid,";
$sql.= " t.entity";
$sql.= " t.entity,";

$sql.= " t.code,";
$sql.= " t.sortorder,";
Expand Down

0 comments on commit 7e3bfd3

Please sign in to comment.