Compare commits
No commits in common. "8b0af505a1529c7aef4ec9c5147649aec7ce5576" and "a7be4e00b47829a88ae48889cc02f8621a5f4e86" have entirely different histories.
8b0af505a1
...
a7be4e00b4
3
.github/ISSUE_TEMPLATE/bug_report.md
vendored
3
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -10,9 +10,6 @@ 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
1
.github/ISSUE_TEMPLATE/config.yml
vendored
@ -1 +0,0 @@
|
|||||||
blank_issues_enabled: false
|
|
@ -66,6 +66,7 @@ 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,12 +2,9 @@
|
|||||||
<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->groupBy(fn($item)=>$item->isStructural()) as $oo)
|
@foreach ($objectclasses as $o)
|
||||||
<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