From: Sven Schöling Date: Mon, 21 Jul 2014 08:08:44 +0000 (+0200) Subject: HTML::Util: Short circuit ohne $value. Behebt gleichzeitig eine Warnung. X-Git-Tag: release-3.2.0beta~393 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=ad06ed73b3e1d5932d874ef389daa109307db723;p=kivitendo-erp.git HTML::Util: Short circuit ohne $value. Behebt gleichzeitig eine Warnung. --- diff --git a/SL/HTML/Util.pm b/SL/HTML/Util.pm index 72a7a7f57..ed5ffdec9 100644 --- a/SL/HTML/Util.pm +++ b/SL/HTML/Util.pm @@ -17,6 +17,8 @@ sub strip { my $value = !ref($class_or_value) && (($class_or_value // '') eq 'SL::HTML::Util') ? $_[1] : $class_or_value; + return '' unless $value; + if (!%stripper) { %stripper = ( parser => HTML::Parser->new );