diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-03-06 18:43:08 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-03-06 18:43:08 +0100 |
commit | ead39090a962e87ad790cf93943ba5f242d11882 (patch) | |
tree | d777612b9a0755ff053bf9ceef7d4a3d83029073 /extensions/MyDashboard | |
parent | 7f934cfcf2ec751f58d4c95f181985460e0861dd (diff) | |
download | bugzilla-ead39090a962e87ad790cf93943ba5f242d11882.tar.gz bugzilla-ead39090a962e87ad790cf93943ba5f242d11882.tar.xz |
Bug 848221 - In My Dashboard in Flags You Have Requested - bugzilla accounts without a name specified are not shown in the requestee field
Diffstat (limited to 'extensions/MyDashboard')
-rw-r--r-- | extensions/MyDashboard/lib/Queries.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/MyDashboard/lib/Queries.pm b/extensions/MyDashboard/lib/Queries.pm index 65aa9034b..b4d80e2f2 100644 --- a/extensions/MyDashboard/lib/Queries.pm +++ b/extensions/MyDashboard/lib/Queries.pm @@ -185,8 +185,8 @@ sub query_flags { bugs.short_desc AS bug_summary, flags.attach_id AS attach_id, attachments.description AS attach_summary, - requesters.realname AS requester, - requestees.realname AS requestee, + requesters.login_name AS requester, + requestees.login_name AS requestee, " . $dbh->sql_date_format('flags.creation_date', '%Y-%m-%d %H:%i') . " AS created FROM flags LEFT JOIN attachments |