Skip to content

Commit

Permalink
fix undefined property in expensereportline class (#31854)
Browse files Browse the repository at this point in the history
Co-authored-by: Hystepik <lmarcouiller@nltechno.com>
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
  • Loading branch information
3 people authored Nov 16, 2024
1 parent 1ec2b05 commit 5f5fc07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/expensereport/class/expensereportline.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public function fetch($rowid)

$this->rowid = $objp->rowid;
$this->id = $objp->rowid;
$this->ref = $objp->ref;
//$this->ref = $objp->ref; Undefined property
$this->fk_expensereport = $objp->fk_expensereport;
$this->comments = $objp->comments;
$this->qty = $objp->qty;
Expand Down

0 comments on commit 5f5fc07

Please sign in to comment.