mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-25 18:59:04 +02:00
Allow Or modules without version also
This commit is contained in:
parent
b1c48a9069
commit
9cb9387206
@ -1008,6 +1008,8 @@ class Module
|
|||||||
foreach ($orParts as $orPart) {
|
foreach ($orParts as $orPart) {
|
||||||
if (preg_match('/^([\w\-\/]+)\s+\((.+)\)$/', $orPart, $m)) {
|
if (preg_match('/^([\w\-\/]+)\s+\((.+)\)$/', $orPart, $m)) {
|
||||||
$metadata->{$key}['|' . $i][$m[1]] = $m[2];
|
$metadata->{$key}['|' . $i][$m[1]] = $m[2];
|
||||||
|
} elseif (preg_match('/^([\w\-\/]+)$/', $orPart, $m)) {
|
||||||
|
$metadata->{$key}['|' . $i][$m[1]] = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} elseif (preg_match('/^([\w\-\/]+)\s+\((.+)\)$/', $part, $m)) {
|
} elseif (preg_match('/^([\w\-\/]+)\s+\((.+)\)$/', $part, $m)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user