Closed
Bug 234724
Opened 21 years ago
Closed 21 years ago
about:config fails miserably if you filter for string with uppercase chars
Categories
(SeaMonkey :: UI Design, defect)
SeaMonkey
UI Design
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.7beta
People
(Reporter: Biesinger, Assigned: Biesinger)
References
Details
Attachments
(1 file)
1.09 KB,
patch
|
neil
:
review+
bzbarsky
:
superreview+
|
Details | Diff | Splinter Review |
in function FilterPrefs()
var substring = document.getElementById("textbox").value.toString();
note: this may contain uppercase chars
if (gPrefArray[i].prefCol.toLowerCase().indexOf(substring) >= 0)
note: this can not possibly contain uppercase chars
Assignee | ||
Comment 1•21 years ago
|
||
Assignee | ||
Updated•21 years ago
|
Attachment #141653 -
Flags: superreview?(bzbarsky)
Attachment #141653 -
Flags: review?(neil.parkwaycc.co.uk)
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
OS: Linux → All
Hardware: PC → All
Target Milestone: --- → mozilla1.7beta
![]() |
||
Comment 2•21 years ago
|
||
Comment on attachment 141653 [details] [diff] [review]
patch
sr=bzbarsky
Attachment #141653 -
Flags: superreview?(bzbarsky) → superreview+
Comment 3•21 years ago
|
||
Comment on attachment 141653 [details] [diff] [review]
patch
>- var substring = document.getElementById("textbox").value.toString();
What was I on when I wrote that? I probably wrote toString instead of
toLowerCase or something... take the toString out if you like.
>+ var substring = document.getElementById("textbox").value.toString().toLowerCase();
Attachment #141653 -
Flags: review?(neil.parkwaycc.co.uk) → review+
Assignee | ||
Comment 4•21 years ago
|
||
Checking in config.js;
/cvsroot/mozilla/xpfe/global/resources/content/config.js,v <-- config.js
new revision: 1.12; previous revision: 1.11
done
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Comment 5•21 years ago
|
||
*** Bug 211041 has been marked as a duplicate of this bug. ***
Assignee | ||
Comment 6•21 years ago
|
||
forgot to remove .toString in my last checkin, did that now.
Updated•20 years ago
|
Product: Core → Mozilla Application Suite
You need to log in
before you can comment on or make changes to this bug.
Description
•