Closed
Bug 184244
Opened 23 years ago
Closed 23 years ago
CIRCChanMode.prototype.setSecret uses +p instead of +s
Categories
(Other Applications Graveyard :: ChatZilla, defect)
Other Applications Graveyard
ChatZilla
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: justinarthur, Assigned: rginda)
Details
Attachments
(1 file)
|
690 bytes,
patch
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3a) Gecko/20021115
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3a) Gecko/20021115
In irc.js, it looks like the CIRCChanMode.prototype.setSecret method is
identical to CIRCChanMode.prototype.setPvt method.
The part that I think needs changing is this:
this.parent.parent.sendData ("MODE " + this.parent.encodedName + " " +
modifier + "p\n");
Where "p\n" should be replaced with "s\n" in the setSecret method. Everywhere
else in script differentiates between the two modes, so I assume that this part
was intended to do the same.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1•23 years ago
|
||
You're right, it does seem wrong. Patch coming up in a minute.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•23 years ago
|
||
| Assignee | ||
Comment 4•23 years ago
|
||
checked in
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Core → Other Applications
Updated•9 months ago
|
Product: Other Applications → Other Applications Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•