# HG changeset patch # User df # Date 1232886521 0 # Node ID c80353ce6afcbd870e5d0516bb8e2b1200504e60 # Parent 42268fc087a92e283145c5c7d36a8dc675bd5555 Cheap solution to make ALT work on eve :( diff -r 42268fc087a9 -r c80353ce6afc reproctool.cgi --- a/reproctool.cgi Sat Jan 24 17:53:47 2009 +0000 +++ b/reproctool.cgi Sun Jan 25 12:28:41 2009 +0000 @@ -116,6 +116,10 @@ for my $item (@output) { + # Due to some IGB limitations, we cant use escapeHTML(). So the workaround is useing "'s. + my $htmlItemName=$item->{name}; + $htmlItemName=~s/'/"/g; + if ($col == $cols) { print "\n"; @@ -147,7 +151,7 @@ print ""; print "" if defined $link; - print "$item->{name}"; + print "$htmlItemName"; print "" if defined $link; print "
"; print "" if defined $colour;