diff options
author | bugreport%peshkin.net <> | 2008-04-04 13:47:54 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2008-04-04 13:47:54 +0200 |
commit | 5c7873a32bbd999dc677cd133383afa9274a63b9 (patch) | |
tree | f109479317cd79b0ec77854c289a983421837c08 | |
parent | e4191ba378475aa2479999ce4bbb11c652efc020 (diff) | |
download | bugzilla-5c7873a32bbd999dc677cd133383afa9274a63b9.tar.gz bugzilla-5c7873a32bbd999dc677cd133383afa9274a63b9.tar.xz |
Bug 253588: Change Bugzilla->user to be usable even for a logged-out user
patch by erik,joel
r=kiko
a=justdave
-rw-r--r-- | docs/en/rel_notes.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/en/rel_notes.txt b/docs/en/rel_notes.txt index 139df3edc..1cf9dfdfc 100644 --- a/docs/en/rel_notes.txt +++ b/docs/en/rel_notes.txt @@ -32,7 +32,7 @@ Required Perl modules: CGI v2.93 (new since 2.16) (changed from 2.17.7) Data::Dumper (any) Date::Format v2.21 (changed from 2.16) - DBI v1.32 (changed from 2.16) + DBI v1.36 (changed from 2.16) (changed from 2.17.7) DBD::mysql v2.1010 (changed from 2.16) File::Spec v0.82 File::Temp (any) @@ -287,7 +287,7 @@ Code Changes Which May Affect Customizations - Use Bugzilla->user->login in place of $::COOKIE{Bugzilla_login} - You can tell if there's a user logged in or not by checking if - Bugzilla->user exists rather than looking for $::userid==0 + Bugzilla->user->id != 0 rather than looking for $::userid != 0 Recommended Practice for the Upgrade |