mirror of
https://github.com/processwire/processwire.git
synced 2025-08-17 12:10:45 +02:00
Fix issue processwire/processwire-issues#892
This commit is contained in:
@@ -377,7 +377,7 @@ class InputfieldForm extends InputfieldWrapper {
|
||||
if(!$child->getSetting('required') || $child->getSetting('requiredSkipped')) continue;
|
||||
|
||||
// if field was not shown, then it can't be required
|
||||
if($child->getSetting('showIfSkipped')) {
|
||||
if($child->getSetting('showIfSkipped') && !$child->getSetting('showIfProcessed')) {
|
||||
$child->set('requiredSkipped', true);
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user