diff --git a/webtools/PLIF/PLIF/Input.pm b/webtools/PLIF/PLIF/Input.pm index 48aedd97ca9..d7521e535c0 100644 --- a/webtools/PLIF/PLIF/Input.pm +++ b/webtools/PLIF/PLIF/Input.pm @@ -146,6 +146,7 @@ sub getArgumentsAsString { sub getArgumentsFromString { my $self = shift; my($string) = @_; + $self->assert(defined($string), 1, 'Tried to expand an undefined string'); if (ref($string) eq 'ARRAY') { $string = join(';', @$string); }