From 3e9c39007f9abf705faa90d4e0c41e4a311c1174 Mon Sep 17 00:00:00 2001 From: Ceri Davies Date: Sat, 27 Dec 2003 14:44:57 +0000 Subject: [PATCH] Our longest category name is currently 8 characters long, and we're over halfway to P100k, so update the width of the "Tracker" column to cope. --- en/cgi/query-pr-summary.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/cgi/query-pr-summary.cgi b/en/cgi/query-pr-summary.cgi index 407946ceba..cc2ffe42ac 100755 --- a/en/cgi/query-pr-summary.cgi +++ b/en/cgi/query-pr-summary.cgi @@ -1,5 +1,5 @@ #!/usr/bin/perl -T -# $FreeBSD: www/en/cgi/query-pr-summary.cgi,v 1.40 2003/09/02 09:46:27 dougb Exp $ +# $FreeBSD: www/en/cgi/query-pr-summary.cgi,v 1.41 2003/12/27 14:32:15 ceri Exp $ sub escape($) { $_ = $_[0]; s/&/&/g; s//>/g; $_; } @@ -488,7 +488,7 @@ sub gnats_summary { } print "$state [$date] $title" . - (' ' x (12 - length($_))) . + (' ' x (16 - length($_))) . $resp . (' ' x (12 - length($resp))) . ($htmlmode ? $syn : substr($syn,0,41)) . "\n";