![]() |
|
|
|||||||
| For more information about the ads and why they're here, please see the FAQ |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
When I try to delete a email after reading the email by pushing the trash can I get the following error from IE 6 / 7
Line: 1304 Char: 5 Error: 'this.message_list'is null or not an object Code: 0 URL: http://webmail.domain.com/?_task=mai...70&_mbox=INBOX When I go back to the default view where I can see al the emails I'm able to delete the email....?? |
|
#2
|
|||
|
|||
|
I'm seeing the same behavior, I'm not sure what caused the change. I'm currently running revision 359.
|
|
#3
|
|||
|
|||
|
Ack. Same here.
|
|
#4
|
|||
|
|||
|
I, too, am seeing the same error in IE. On top of this, Firefox, while not reporting an error, also produces the same symptom (cannot delete an email while reading it).
I am not sure if it is related, but after selecting "Empty" while on the Trash folder screen, I receive the confirmation dialogue, but none of the emails in the Trash are deleted. This, too, happens in both IE and Firefox. |
|
#5
|
|||
|
|||
|
Quote:
On firefox, while reading the message, i can't delete it by using the delete icon... Then if i go to my inbox, i can delete it from there... Does anybody know how can i solve this problem? |
|
#6
|
|||
|
|||
|
To workaround this problem run "svn -r353 update". This reverts the code to before the "Partial client re-write with a common list class" commit which seemed to break deleting messages.
I too find I can not do a select all, delete and various other things unless I'm on revision 353 or before. You can then check if there have been any updates to fix this with "svn -u status" to see if there are aany new revisions, and then see what the log entry for them is with something like "svn -354:HEAD log". Hope this helps till it's fixed! |
|
#7
|
|||
|
|||
|
Quote:
|
|
#8
|
|||
|
|||
|
Revision 360 - i can't move messages too. Maybe someone have a solution, how to change the code?
|
|
#9
|
|||
|
|||
|
I gave a solution! run svn -r353 update to revert to working code.
|
|
#10
|
|||
|
|||
|
Well, i'm running 360, and i managed to patch the js script to make the delete button work.
Although it works for me, i don't guarantee anything: you have to edit program/js/app.js line 1236: replace Code:
var selection = this.message_list.get_selection(); if (!mbox || !(selection.length || this.env.uid) || mbox==this.env.mailbox) return; Code:
if (!(this.env.uid)){
var selection = this.message_list.get_selection();
if (!mbox || !(selection.length) || mbox==this.env.mailbox)
return;
}
Code:
var selection = this.message_list.get_selection(); if (!(selection.length || this.env.uid)) return; Code:
if (!(this.env.uid)){
var selection = this.message_list.get_selection();
if (!(selection.length))
return;
}
Code:
var selection = this.message_list.get_selection(); if (!(selection.length || this.env.uid)) return; Code:
if (!(this.env.uid)){
var selection = this.message_list.get_selection();
if (!(selection.length))
return;
}
![]() |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
| For more information about the ads and why they're here, please see the FAQ |