diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-08-17 00:45:22 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-08-17 00:45:22 +0200 |
commit | e15dcf488f8bbf1fef2cd0a7001385f7a95e8d59 (patch) | |
tree | 4a46e8d94f53faf98923ca7509704f5e1fdec541 /summarize_time.cgi | |
parent | Bug 675603: Remove obsolete code from Bugzilla/DB/Oracle.pm (diff) | |
download | bugzilla-e15dcf488f8bbf1fef2cd0a7001385f7a95e8d59.tar.gz bugzilla-e15dcf488f8bbf1fef2cd0a7001385f7a95e8d59.tar.bz2 bugzilla-e15dcf488f8bbf1fef2cd0a7001385f7a95e8d59.zip |
Bug 678970: Use $user and $cgi instead of Bugzilla->user and Bugzilla->cgi
r=timello a=LpSolit
Diffstat (limited to 'summarize_time.cgi')
-rwxr-xr-x | summarize_time.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/summarize_time.cgi b/summarize_time.cgi index dd8ba741b..c7c7bebec 100755 --- a/summarize_time.cgi +++ b/summarize_time.cgi @@ -250,10 +250,9 @@ sub get_earliest_activity_date { # Template code starts here # -Bugzilla->login(LOGIN_REQUIRED); +my $user = Bugzilla->login(LOGIN_REQUIRED); my $cgi = Bugzilla->cgi; -my $user = Bugzilla->user; my $template = Bugzilla->template; my $vars = {}; |