@@ -8,6 +8,8 @@ pisg (0.69) - ??
Torbjörn:
* Bug fixes:
+ Fix urlencode to encode '&' (thanks to Thomas Whaples).
+ + Fix double class if hicell/hicell2 is set to "" (thanks RaZ for
+ spotting this).
Language Updates:
+ Portuguese: completed by DarkForce72.
@@ -684,6 +684,9 @@ sub generate_colors
my $self = shift;
my $c = shift;
+ # if hicell or hicell2 is "", do not print the class as it could mess up the gendercode
+ return "" if not length $self->{cfg}->{hicell} . $self->{cfg}->{hicell2};
+
my $h = $self->{cfg}->{hicell} or return "class=\"hicell\"";
$h =~ s/^#//;
$h = hex $h;