Fix a syntax warning re shift.

This commit is contained in:
Colin Kuskie 2009-04-25 14:57:18 +00:00
parent f438caffd8
commit 4f5a010faa

View file

@ -227,7 +227,7 @@ my $text = "";
my $inside = {};
sub html2text {
my $html = shift . " ";
my $html = shift() . " ";
$text = "";
$inside = {};
my $tagHandler = sub {