1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 07:47:00 +02:00
This commit is contained in:
Ryan Cramer
2024-05-17 12:03:16 -04:00
parent 9eb58ead01
commit 7c89b2b647

View File

@@ -2538,6 +2538,7 @@ class ProcessField extends Process implements ConfigurableModule {
if(!$input->post('system')) {
$this->field->flags = $this->field->flags | Field::flagSystemOverride;
$this->field->flags = $this->field->flags & ~Field::flagSystem;
$this->field->flags = $this->field->flags & ~Field::flagSystemOverride;
} else {
$this->field->flags = $this->field->flags | Field::flagSystem;
}