mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-27 15:44:21 +02:00
fix uri uninitialized option (#944)
This commit is contained in:
parent
f15a68cb64
commit
e91207c13b
@ -163,7 +163,7 @@ sub get_next {
|
|||||||
}
|
}
|
||||||
|
|
||||||
my $url_path = $self->{url_path} . $options{path};
|
my $url_path = $self->{url_path} . $options{path};
|
||||||
$url_path .= '?' . $options{uri} if (defined($options{args}));
|
$url_path .= '?' . $options{args} if (defined($options{args}));
|
||||||
$url_path .= '?' . $encoded_tag if (defined($options{nextTag}) && !defined($options{args}));
|
$url_path .= '?' . $encoded_tag if (defined($options{nextTag}) && !defined($options{args}));
|
||||||
$url_path .= '&' . $encoded_tag if (defined($options{nextTag}) && defined($options{args}));
|
$url_path .= '&' . $encoded_tag if (defined($options{nextTag}) && defined($options{args}));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user