Skip to content
Snippets Groups Projects
Commit b0359b46 authored by Laurent Destailleur's avatar Laurent Destailleur Committed by GitHub
Browse files

Merge pull request #7081 from atm-florian/5.0

fix class error (given by eclipse Oxygen version)
parents eef027ac 6e8c83b2
Branches
No related tags found
No related merge requests found
...@@ -1129,7 +1129,7 @@ class BookKeeping extends CommonObject ...@@ -1129,7 +1129,7 @@ class BookKeeping extends CommonObject
global $user; global $user;
$error = 0; $error = 0;
$object = new Accountingbookkeeping($this->db); $object = new BookKeeping($this->db);
$this->db->begin(); $this->db->begin();
......
...@@ -279,7 +279,7 @@ class Cpaiement ...@@ -279,7 +279,7 @@ class Cpaiement
$num = $this->db->num_rows($resql); $num = $this->db->num_rows($resql);
while ($obj = $this->db->fetch_object($resql)) { while ($obj = $this->db->fetch_object($resql)) {
$line = new CpaiementLine(); $line = new Cpaiement();
$line->id = $obj->id; $line->id = $obj->id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment