Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Ravada-Mirror
Commits
f939436c
Commit
f939436c
authored
Sep 09, 2019
by
Francesc Guasch
Browse files
refactor(frontend): removed warning undefined
parent
ffc5ead6
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/Ravada/Front.pm
View file @
f939436c
...
...
@@ -331,8 +331,10 @@ sub filter_base_without_clones($domains) {
for
(
my
$i
=
0
;
$i
<
$size_domains
;
++
$i
)
{
if
(
@$domains
[
$i
]
->
{
is_base
})
{
for
(
my
$j
=
0
;
$j
<
$size_domains
;
++
$j
)
{
if
(
$j
!=
$i
&&
!
(
@$domains
[
$j
]
->
{
is_base
})
&&
(
@$domains
[
$j
]
->
{
id_base
}
eq
@$domains
[
$i
]
->
{
id
}))
{
push
@list
,
(
@$domains
[
$i
]);
if
(
$j
!=
$i
&&
!
(
$domains
->
[
$j
]
->
{
is_base
})
&&
defined
$domains
->
[
$j
]
->
{
id_base
}
&&
$domains
->
[
$j
]
->
{
id_base
}
eq
$domains
->
[
$i
]
->
{
id
})
{
push
@list
,
(
$domains
->
[
$i
]);
last
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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