From 667a7abdb6d998df719317e101eb08860f1b78d1 Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Tue, 27 Jul 2004 12:53:26 +0000 Subject: Bug 251837: Add UI to add/remove 'My Bugs' link in footer r=joel a=justdave --- .../default/account/prefs/saved-searches.html.tmpl | 39 ++++++++++++++++------ userprefs.cgi | 6 ++++ 2 files changed, 35 insertions(+), 10 deletions(-) diff --git a/template/en/default/account/prefs/saved-searches.html.tmpl b/template/en/default/account/prefs/saved-searches.html.tmpl index a11c1c380..5055565e3 100644 --- a/template/en/default/account/prefs/saved-searches.html.tmpl +++ b/template/en/default/account/prefs/saved-searches.html.tmpl @@ -24,10 +24,6 @@
- @@ -40,15 +36,32 @@ + + + + + + + + [% FOREACH q = queries %] - + [% END %]
- Show in
- Footer -
Search Forget + Show in + Footer +
My Bugs + [% filtered_username = user.login FILTER url_quote %] + Run + +   + +   + + +
- - [% q.name FILTER html %] Run @@ -60,6 +73,12 @@ Forget + +
diff --git a/userprefs.cgi b/userprefs.cgi index cd73678c9..f71fdec02 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -298,6 +298,7 @@ sub DoPermissions { sub DoSavedSearches() { + $vars->{'user'} = Bugzilla->user; $vars->{'queries'} = Bugzilla->user->queries; } @@ -315,6 +316,11 @@ sub SaveSavedSearches() { } Bugzilla->user->flush_queries_cache; + + my $showmybugslink = defined($cgi->param("showmybugslink")) ? 1 : 0; + $dbh->do("UPDATE profiles SET mybugslink = $showmybugslink " . + "WHERE userid = " . Bugzilla->user->id); + Bugzilla->user->{'showmybugslink'} = $showmybugslink; } -- cgit v1.2.3-24-g4f1b