Changes the default screen

Bradley Baetz bbaetz at acm.org
Wed Feb 26 11:01:40 UTC 2003


On Tue, Feb 25, 2003 at 07:51:17PM -0500, Casey Gregoire wrote:
> Short of changing the code it self, is there a way to make the first page
> you see the user's current bug list? 
> 

Well, the problem with that is that the user may not be logged in. What
you could do is write a quick script to [untested]:

confirm_login();
my $bugs_url = Param('mybugstemplate');
my $username = url_quote($::COOKIE{'Bugzilla_login'});

$bugs_url =~ s/%userid%/$username/;
print Bugzilla->cgi->redirect("buglist.cgi?$bugs_url");

Or something along those lines.

Bradley



More information about the developers mailing list