In an older episode (Friday 08 April 2005 20:23), Stuart Johnston wrote: > Theo Van Dinter wrote: > > On Fri, Apr 08, 2005 at 06:28:25PM +0200, [EMAIL PROTECTED] wrote: > > > >>>- $uri =~ s,:\d+$,,gs; # port > >>>+ $uri =~ s,:\d*$,,gs; # port > >> > >>How exactly should i apply the patch? > > > > > > Since it's a 1 character change, you can just edit the file manually. :)
Good point, thanks! Done. > > > > While you're in there, you might want to change the line above it as > well (if you haven't already). Bug #4213 > > - $uri =~ s,[/\?\&].*$,,gs; # path/cgi params > + $uri =~ s,[/\?].*$,,gs; # path/cgi params Done. Thanks to you, too.