Skip to content
Snippets Groups Projects
Commit d5026ffe authored by Laurent's avatar Laurent
Browse files

Merge branch 'hotline_6.53' into 'master'

Hotline 6.53

See merge request !422
parents 0e77f43d 614f0f23
Branches
Tags
2 merge requests!529Hotline 6.56,!425Dev#16320 loire forez skin
......@@ -90,7 +90,8 @@ class Class_CustomField_ModelValues {
public function save() {
$values = $this->getFieldValues();
foreach($values as $value) {
empty($value->getValue()) ? $value->delete() : $value->save();
$inner_value = $value->getValue();
empty($inner_value) ? $value->delete() : $value->save();
}
return $this;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment