X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/b97ebd969b2e520d3e65509c0f892edacae70520..ccc4981ff62e695908a9855041b9669800a733ed:/common.inc.plp diff --git a/common.inc.plp b/common.inc.plp index e4cc5f9..cd218ef 100644 --- a/common.inc.plp +++ b/common.inc.plp @@ -11,9 +11,13 @@ use HTTP::Date; use Encode qw( decode_utf8 ); sub Alert { - my ($title, $debug) = @_; - $title .= ": $debug" if $Dev and defined $debug; - say "

$title

\n"; + my ($html, $debug) = @_; + ref $html eq 'ARRAY' or $html = [$html]; + my ($title, @lines) = @{$html}; + $body = "

$title

"; + $body .= "\n

$_

" for @lines; + $body .= "\n
$debug
" if $Dev and $debug; + say "
$body
\n"; } $PLP::ERROR = sub {