1
0
mirror of https://github.com/moparisthebest/gpgit synced 2024-11-15 21:45:03 -05:00

Handle CID urls that are not surrounded by quotation marks

This commit is contained in:
Mike Cardwell 2011-11-15 13:05:48 +00:00
parent 2961b1e2ef
commit a6e86497df

View File

@ -229,7 +229,7 @@ use MIME::Parser;
## Parse out cid urls ## Parse out cid urls
my @cids; my @cids;
$html =~ s/=\s*["']cid:(.+?)["'\s\/>]/push @cids,$1/egoism; $html =~ s/=\s*["']?cid:(.+?)["'\s\/>]/push @cids,$1/egoism;
return @cids; return @cids;
} }