Inject $user in ProductCombination::updateProperties

This commit is contained in:
Cédric 2019-11-09 13:29:12 +01:00 committed by GitHub
parent ab26356e92
commit 4dbf151b15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1073,7 +1073,7 @@ class Product extends CommonObject
$comb = new ProductCombination($this->db);
foreach ($comb->fetchAllByFkProductParent($this->id) as $currcomb) {
$currcomb->updateProperties($this);
$currcomb->updateProperties($this, $user);
}
}