Closed
Bug 72817
Opened 24 years ago
Closed 22 years ago
able to rename (by dragging and dropping) Local Folders that can't be renamed
Categories
(SeaMonkey :: MailNews: Message Display, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: sspitzer, Assigned: sspitzer)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
(deleted),
patch
|
Details | Diff | Splinter Review |
the problem is in messengerdnd.js, a simple fix on the way.
this only happens with servers of type "none"
Assignee | ||
Comment 1•24 years ago
|
||
Comment 2•24 years ago
|
||
Shouldn't
if (serverType != "none") {
return(false);
be
if (serverType == "none") {
return(false);
Assignee | ||
Comment 3•24 years ago
|
||
serverType is the target server.
we want to bail out (return false) if the target server is not "Local Folders".
if we do !=, it will only bail out if the target server is "Local Folders", and
let me drop (and copy) a folder from one server to another.
Status: NEW → ASSIGNED
Comment 4•24 years ago
|
||
So we want special folders that cannot be renamed on a particular server to be
dropped on different servers. I am not sure why we would want to do that. I feel
we should not allow dragging of such folders.
Assignee | ||
Comment 5•24 years ago
|
||
we're allowing a user to copy certain special folder to local mail, because 4.x
allowed that.
we've got a few loose ends with special folders (as everyone knows) I'll log
some bugs to track them.
Updated•22 years ago
|
Comment 6•22 years ago
|
||
looks like this has already been checked in. marking fixed.
Status: ASSIGNED → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
verified trunk builds 20021029 on winxp, macosx and linux.
Status: RESOLVED → VERIFIED
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•