On Wed, 22 May 2019 at 15:05, <curc...@apache.org> wrote: > > This is an automated email from the ASF dual-hosted git repository. > > curcuru pushed a commit to branch master > in repository https://gitbox.apache.org/repos/asf/whimsy.git > > > The following commit(s) were added to refs/heads/master by this push: > new f7a9b58 Fix auth realm > f7a9b58 is described below > > commit f7a9b588f74afec0a8551b6db667c28c5d3b5d05 > Author: Shane Curcuru <a...@shanecurcuru.org> > AuthorDate: Wed May 22 10:05:02 2019 -0400 > > Fix auth realm > --- > www/board/list-traffic.cgi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/www/board/list-traffic.cgi b/www/board/list-traffic.cgi > index f02119a..0d843aa 100755 > --- a/www/board/list-traffic.cgi > +++ b/www/board/list-traffic.cgi > @@ -13,7 +13,7 @@ require 'mail' > user = ASF::Person.new($USER) > unless user.asf_member? or ASF.pmc_chairs.include? user > print "Status: 401 Unauthorized\r\n" > - print "WWW-Authenticate: Basic realm=\"ASF Members and PMC > chairs\"\r\n\r\n" > + print "WWW-Authenticate: Basic realm=\"ASF Members and Officers\"\r\n\r\n"
This apparent discrepancy of text and check needs documenting, else it may be 'fixed' again. > exit > end > >