Refs #5385: Fix Typo

This commit is contained in:
Florian Asche 2014-06-03 14:17:27 +02:00
parent 0b38642280
commit 8809a97bb2
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ sub manage_selection {
my $webcontent = centreon::plugins::httplib::connect($self);
while ($webcontent =~ m/\/(.*):(.*):(.*):(.*)/g) {
while ($webcontent =~ m/(.*):(.*):(.*):(.*)/g) {
my ($context, $state, $sessions, $contextpath) = ($1, $2, $3, $4);
next if (defined($self->{option_results}->{filter_path}) && $self->{option_results}->{filter_path} ne '' &&

View File

@ -93,7 +93,7 @@ sub manage_selection {
my $webcontent = centreon::plugins::httplib::connect($self);
while ($webcontent =~ m/\/(.*):(.*):(.*):(.*)/g) {
while ($webcontent =~ m/(.*):(.*):(.*):(.*)/g) {
my ($context, $state, $sessions, $contextpath) = ($1, $2, $3, $4);
if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' &&

View File

@ -105,7 +105,7 @@ sub manage_selection {
my $webcontent = centreon::plugins::httplib::connect($self);
while ($webcontent =~ m/\/(.*):(.*):(.*):(.*)/g) {
while ($webcontent =~ m/(.*):(.*):(.*):(.*)/g) {
my ($context, $state, $sessions, $contextpath) = ($1, $2, $3, $4);
next if (defined($self->{option_results}->{filter_state}) && $self->{option_results}->{filter_state} ne '' &&