Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
bb2b0198
Commit
bb2b0198
authored
Feb 28, 2010
by
Reed Loden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 537834 - "Buglist results using atom ctype do not display users with empty real names"
[r=LpSolit a=LpSolit]
parent
da55a304
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
buglist.cgi
buglist.cgi
+2
-0
list.atom.tmpl
template/en/default/list/list.atom.tmpl
+3
-3
No files found.
buglist.cgi
View file @
bb2b0198
...
...
@@ -724,9 +724,11 @@ if ($format->{'extension'} eq 'atom') {
'short_desc'
,
'opendate'
,
'changeddate'
,
'reporter'
,
'reporter_realname'
,
'priority'
,
'bug_severity'
,
'assigned_to'
,
'assigned_to_realname'
,
'bug_status'
,
'product'
,
...
...
template/en/default/list/list.atom.tmpl
View file @
bb2b0198
...
...
@@ -48,7 +48,7 @@
[%- bug.bug_id FILTER xml %]"/>
<id>[% urlbase FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %]</id>
<author>
<name>[% bug.reporter_realname FILTER xml %]</name>
<name>[% bug.reporter_realname
? bug.reporter_realname : bug.reporter
FILTER xml %]</name>
</author>
<updated>[% bug.changedtime FILTER time("%Y-%m-%dT%H:%M:%SZ", "UTC") FILTER xml %]</updated>
<summary type="html">
...
...
@@ -65,10 +65,10 @@
<td>[% bug.component FILTER html %]</td>
</tr><tr class="bz_feed_assignee">
<td>[% columns.assigned_to_realname.title FILTER html %]</td>
<td>[% bug.assigned_to_realname FILTER html %]</td>
<td>[% bug.assigned_to_realname
? bug.assigned_to_realname : bug.assigned_to
FILTER html %]</td>
</tr><tr class="bz_feed_reporter">
<td>[% columns.reporter_realname.title FILTER html %]</td>
<td>[% bug.reporter_realname FILTER html %]</td>
<td>[% bug.reporter_realname
? bug.reporter_realname : bug.reporter
FILTER html %]</td>
</tr><tr class="bz_feed_bug_status">
<td>[% columns.bug_status.title FILTER html %]</td>
<td>[% display_value("bug_status", bug.bug_status) FILTER html %]</td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment