We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7f4c50 commit f6a9607Copy full SHA for f6a9607
app/Http/Controllers/EntryController.php
@@ -71,7 +71,7 @@ public function add(EntryAddRequest $request): \Illuminate\View\View
71
$o->objectclass = Arr::undot($x);
72
73
// Also add in our required attributes
74
- foreach ($o->getAvailableAttributes()->filter(fn($item)=>$item->is_must) as $ao)
+ foreach ($o->getAvailableAttributes()->filter(fn($item)=>$item->is_must && ($item->name_lc !== 'objectclass')) as $ao)
75
$o->{$ao->name} = [Entry::TAG_NOTAG=>['']];
76
}
77
0 commit comments