fix extending save function
This commit is contained in:
parent
1e4d91baec
commit
7b97517690
@ -103,7 +103,7 @@ class Suspect extends ObjectModel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function save()
|
public function save($nullValues = false, $autodate = true)
|
||||||
{
|
{
|
||||||
if (parent::save()) {
|
if (parent::save()) {
|
||||||
return true;
|
return true;
|
||||||
|
@ -79,7 +79,7 @@ class CustomGroup extends ObjectModel
|
|||||||
');
|
');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function save()
|
public function save($nullValues = false, $autodate = true)
|
||||||
{
|
{
|
||||||
if (parent::save()) {
|
if (parent::save()) {
|
||||||
$return = true;
|
$return = true;
|
||||||
|
@ -123,7 +123,7 @@ class SupplierDemand extends ObjectModel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function save()
|
public function save($nullValues = false, $autodate = true)
|
||||||
{
|
{
|
||||||
if (parent::save()) {
|
if (parent::save()) {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user