Closed
Bug 473521
Opened 16 years ago
Closed 13 years ago
add space after comma in list values of search description to avoid early newlines
Categories
(Bugzilla :: Query/Bug List, defect, P3)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: bigstijn, Unassigned)
Details
Attachments
(1 file)
5.92 KB,
image/png
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5
Build Identifier: Bugzilla 3.3.1
On buglist.cgi, in <ul class="search_description">, the list of values of a search item is comma-separated, but without spaces. This is causing sometimes an early newline, because that list of values isn't split.
Eg. <li>
<strong>Severity:</strong>
blocker,critical,major,normal,minor,trivial,enhancement
</li>
should be written as
<li>
<strong>Severity:</strong>
blocker, critical, major, normal, minor, trivial, enhancement
</li>
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
![]() |
||
Updated•16 years ago
|
Version: unspecified → 3.3.1
Comment 2•16 years ago
|
||
That value is literally what Search.pm is seeing, so that's what it prints out. I agree it would be nicer to display it with spaces, but it's unlikely to happen any time soon, unless there's some refactoring of Search.pm.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Priority: -- → P3
Comment 3•13 years ago
|
||
Not able to reproduce this issue against trunk.
![]() |
||
Comment 4•13 years ago
|
||
I cannot reproduce this issue on any supported branch either.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•