Compare commits
4 Commits
a7be4e00b4
...
8b0af505a1
Author | SHA1 | Date | |
---|---|---|---|
8b0af505a1 | |||
f0eaff7d42 | |||
352bbe2b75 | |||
0fe4894192 |
3
.github/ISSUE_TEMPLATE/bug_report.md
vendored
3
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -10,6 +10,9 @@ assignees: ''
|
|||||||
**Describe the bug**
|
**Describe the bug**
|
||||||
A clear and concise description of what the bug is. (One issue per report please.)
|
A clear and concise description of what the bug is. (One issue per report please.)
|
||||||
|
|
||||||
|
**Version of PLA**
|
||||||
|
What version of PLA are you using. Are you using the docker container, an distribution package or running from GIT source?
|
||||||
|
|
||||||
**To Reproduce**
|
**To Reproduce**
|
||||||
Steps to reproduce the behavior:
|
Steps to reproduce the behavior:
|
||||||
1. Go to '...'
|
1. Go to '...'
|
||||||
|
1
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
1
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
blank_issues_enabled: false
|
@ -66,7 +66,6 @@ class LDIF extends Import
|
|||||||
|
|
||||||
$m = [];
|
$m = [];
|
||||||
preg_match('/^([a-zA-Z0-9;-]+)(:+)\s+(.*)$/',$line,$m);
|
preg_match('/^([a-zA-Z0-9;-]+)(:+)\s+(.*)$/',$line,$m);
|
||||||
dump(['m'=>$m,'line'=>$line]);
|
|
||||||
|
|
||||||
switch (Arr::get($m,1)) {
|
switch (Arr::get($m,1)) {
|
||||||
case 'changetype':
|
case 'changetype':
|
||||||
|
@ -2,9 +2,12 @@
|
|||||||
<div class="col-12 col-xl-3">
|
<div class="col-12 col-xl-3">
|
||||||
<select id="objectclass" class="form-control">
|
<select id="objectclass" class="form-control">
|
||||||
<option value="-all-">-all-</option>
|
<option value="-all-">-all-</option>
|
||||||
@foreach ($objectclasses as $o)
|
@foreach($objectclasses->groupBy(fn($item)=>$item->isStructural()) as $oo)
|
||||||
|
<optgroup label="{{ __($oo->first()->isStructural() ? 'Structural' : 'Auxillary') }} Object Class"></optgroup>
|
||||||
|
@foreach($oo as $o)
|
||||||
<option value="{{ $o->name_lc }}">{{ $o->name }}</option>
|
<option value="{{ $o->name_lc }}">{{ $o->name }}</option>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
@endforeach
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user