Commit aa941fc1 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Merge branch '5700-non-existing-classes-in-pluglist-info' into '1.3-dev'

Resolve "Non-existing classes in pluglist::$info"

Closes #5700

See merge request !22
Showing with 4 additions and 2 deletions
+4 -2
......@@ -173,7 +173,9 @@ class pluglist {
}
}
foreach ($foreign_refs as $cname => $refs) {
$this->info[$cname]['plForeignRefs'] = $refs;
if (isset($this->info[$cname])) {
$this->info[$cname]['plForeignRefs'] = $refs;
}
}
/* Provide field for 'all' */
......
......@@ -167,7 +167,7 @@ class ogroup extends simplePlugin
'member' => array(
array('user'),
array('ogroup'),
array('applicationGeneric'),
array('application'),
array('serverGeneric'),
array('workstationGeneric'),
array('terminalGeneric'),
......
  • bmortier @bmortier

    mentioned in commit 1408f13d

    By Côme Chilliet on 2017-10-24T09:12:13 (imported from GitLab)

    ·

    mentioned in commit 1408f13d

    By Côme Chilliet on 2017-10-24T09:12:13 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment