mirror of
https://github.com/processwire/processwire.git
synced 2025-08-11 01:04:16 +02:00
Fix issue processwire/processwire-issues#875
This commit is contained in:
@@ -1124,7 +1124,7 @@ class ProcessPageEdit extends Process implements WirePageEditor, ConfigurableMod
|
||||
|
||||
foreach($caller->wire('fields') as $f) {
|
||||
//if(!($f->flags & Field::flagAutojoin)) continue;
|
||||
if($f->flags & Field::flagSystem && $f->name != 'title') continue;
|
||||
if($f->flags & Field::flagSystem && $f->name != 'title' && $f->name != 'email') continue;
|
||||
if($f->type instanceof FieldtypeFieldsetOpen) continue;
|
||||
$customOptions[$f->name] = $f->name;
|
||||
}
|
||||
|
Reference in New Issue
Block a user