diff options
author | Byron Jones <bjones@mozilla.com> | 2014-01-31 08:18:51 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2014-01-31 08:18:51 +0100 |
commit | c5464b5bb7dfece2bad2b8af9eba4d9b6d07d778 (patch) | |
tree | 092c3a3ecb3152aba305c8ec4323056fc27865e2 /userprefs.cgi | |
parent | cbd6506533f7370ba27c6928e887889627acb6b9 (diff) | |
download | bugzilla-c5464b5bb7dfece2bad2b8af9eba4d9b6d07d778.tar.gz bugzilla-c5464b5bb7dfece2bad2b8af9eba4d9b6d07d778.tar.xz |
Bug 956233: enable USE_MEMCACHE on most objects
r=dkl, a=glob
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 638004c1e..8a93bf5d3 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -491,12 +491,13 @@ sub SaveSavedSearches { } $user->flush_queries_cache; - + # Update profiles.mybugslink. my $showmybugslink = defined($cgi->param("showmybugslink")) ? 1 : 0; $dbh->do("UPDATE profiles SET mybugslink = ? WHERE userid = ?", - undef, ($showmybugslink, $user->id)); + undef, ($showmybugslink, $user->id)); $user->{'showmybugslink'} = $showmybugslink; + Bugzilla->memcached->clear({ table => 'profiles', id => $user->id }); } |