mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 17:25:26 +02:00
Fixed uninitialized value in pattern match
This commit is contained in:
parent
10aa0631af
commit
ae4a9dc324
@ -3866,7 +3866,7 @@ sub subst_alert_macros ($$;$$$$) {
|
||||
my $macro_regexp = join('|', keys %{$macros});
|
||||
|
||||
my $subst_func;
|
||||
if ($string =~ m/^(?:(")(?:.*)"|(')(?:.*)')$/) {
|
||||
if (defined($string) && $string =~ m/^(?:(")(?:.*)"|(')(?:.*)')$/) {
|
||||
my $quote = $1 ? $1 : $2;
|
||||
$subst_func = sub {
|
||||
my $macro = on_demand_macro($pa_config, $dbh, shift, $macros, $agent, $module);
|
||||
|
Loading…
x
Reference in New Issue
Block a user