From: Nick J. <ni...@na...> - 2002-01-28 19:21:38
|
Ooops, I fixed this last night but forgot to check it in :) On Mon, Jan 28, 2002 at 11:11:36AM -0800, Rob Helmer wrote: > Update of /cvsroot/sandweb/sandweb/bin > In directory usw-pr-cvs1:/tmp/cvs-serv4918 > > Modified Files: > sandweb.cgi > Log Message: > noticed a bug with cookie handling; header was being > set with CGI::header( -ck_auth => $ck_auth ) > should be CGI::header( -cookie => $ck_auth ) > > > Index: sandweb.cgi > =================================================================== > RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v > retrieving revision 1.132 > retrieving revision 1.133 > diff -U2 -r1.132 -r1.133 > --- sandweb.cgi 2002/01/28 01:09:26 1.132 > +++ sandweb.cgi 2002/01/28 19:11:33 1.133 > @@ -290,5 +290,5 @@ > $content = "Data Dump<br /><pre>" . $content . "</pre>"; > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Debug Menu', > @@ -341,5 +341,5 @@ > > my $username = $auth->get_userinfo('username'); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Browse Menu', > @@ -433,5 +433,5 @@ > my $content = $browse->browse("$location", "$progname", "@vcs_commands", "@file_commands", $repo_type); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Browse Repository Menu', > @@ -591,5 +591,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : View File', > @@ -649,5 +649,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Edit File', > @@ -678,5 +678,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Create File', > @@ -705,5 +705,5 @@ > FULLPATH => "$users_dir/$username/$location", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE => 'SandWeb : Create Folder', > @@ -744,5 +744,5 @@ > FULLPATH => "$users_dir/$username/$location", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Upload File', > @@ -762,5 +762,5 @@ > FULLPATH => "$users_dir/$username/$location", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Checkout', > @@ -859,5 +859,5 @@ > VCS_ERROR => "@vcs_error", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> "SandWeb : VCS $vcs_command", > @@ -877,5 +877,5 @@ > FILENAME => "@filename", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Commit', > @@ -909,5 +909,5 @@ > VCS_ERROR => "@vcs_error", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> "SandWeb : VCS $vcs_command", > @@ -943,5 +943,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Preferences Menu', > @@ -1025,5 +1025,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Preferences Menu', > > > _______________________________________________ > Sandweb-commit mailing list > San...@li... > https://lists.sourceforge.net/lists/listinfo/sandweb-commit > -- Nick Jennings |