From 21241a59e58bb6b3b740bf9f37a964b08a1d0818 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Wed, 2 Apr 2014 22:30:59 +0800 Subject: Bug 988175: Needinfo dropdown should include "myself" --- extensions/Needinfo/Extension.pm | 4 ++++ extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl | 3 +++ 2 files changed, 7 insertions(+) (limited to 'extensions/Needinfo') diff --git a/extensions/Needinfo/Extension.pm b/extensions/Needinfo/Extension.pm index b30750488..2a4bfa3b3 100644 --- a/extensions/Needinfo/Extension.pm +++ b/extensions/Needinfo/Extension.pm @@ -107,6 +107,10 @@ sub bug_start_of_update { elsif ($needinfo_role eq 'qa_contact') { $requestees{$bug->qa_contact->login} = 1; } + # Use current user as requestee + elsif ($needinfo_role eq 'user') { + $requestees{$user->login} = 1; + } # Use user specified requestee elsif ($needinfo_role eq 'other' && $needinfo_from) { my @needinfo_from_list = ref $needinfo_from diff --git a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl index 0755d449d..87dea003c 100644 --- a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl +++ b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl @@ -97,6 +97,8 @@ identity = '[% bug.assigned_to.realname || bug.assigned_to.login FILTER html FILTER js %]'; } else if (role == 'qa_contact') { identity = '[% bug.qa_contact.realname || bug.qa_contact.login FILTER html FILTER js %]'; + } else if (role == 'user') { + identity = '[% user.realname || user.login FILTER html FILTER js %]'; } YAHOO.util.Dom.get('needinfo_role_identity').innerHTML = identity; } @@ -134,6 +136,7 @@ [% IF Param('useqacontact') && bug.qa_contact.login != "" %] [% END %] + -- cgit v1.2.3-24-g4f1b