A(z) 76. kódú hibát javító kódrészlet szerkesztés

sub fix_76 {	# Link with no space
    my ($error_code, $title_str, $text_str) = @_;

    $text_str =~ m|http://| and return ('Ez inkabb kulso link, 86-os hiba');

    my $count = 0;
    $count += $text_str =~ s|(\[\[[^\]]+)%20([^\]]+\]\])|$1 $2|gm;

    $count or return ('Nincs %20 a linkben');
    my $summary_str = $latin2->decode(
        "Bot: $count linkben a %20 szóközre cserélve. (Hibakód: $error_code)"
    );
    return ($summary_str, $count, $text_str);
}