[FIX] extrafield with visibility '5' update bug
When using a visibility = 5 (not editable extrafield, but visible on card and list), updating the object will result in an empty value in database for this extrafield.
This commit is contained in:
parent
ec45afb05f
commit
a34703532f
@ -2114,7 +2114,7 @@ class ExtraFields
|
|||||||
) {
|
) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (empty($visibility)) {
|
if (empty($visibility) || $visibility == 5) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (empty($perms)) {
|
if (empty($perms)) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user