Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Linuxfabrik
Fork of the Icinga Director
Commits
9521514e
Commit
9521514e
authored
Jun 11, 2020
by
Navid Sassan
Browse files
fixed bug
parent
15430c2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/Director/CustomVariable/CustomVariableArray.php
View file @
9521514e
...
...
@@ -105,7 +105,7 @@ class CustomVariableArray extends CustomVariable
if
(
$this
->
equals
(
$other
))
{
return
$this
;
}
$this
->
value
=
array_unique
(
array_merge
(
$value
,
$other
));
$this
->
value
=
array_unique
(
array_merge
(
$
this
->
value
,
$other
->
value
));
return
$this
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment