mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 14:28:52 +00:00
See ChangeLog
Monotone-Parent: bc53d4486da9eb6b195273cef7d073fdcf53aa5c Monotone-Revision: c753d4af992c07bd25d59ae087113384e379361b Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2010-03-01T15:31:20 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2010-03-01 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/UIxMailEditor.js (-clickedEditorSend):
|
||||
fixed wrong condition that would result in refusing to send a
|
||||
message after having clicked on the Save button.
|
||||
|
||||
2010-02-23 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* Added a patch from Adam Yearout <ayearout@royal.wednet.edu>
|
||||
|
||||
@@ -125,8 +125,8 @@ function validateEditorInput(sender) {
|
||||
return true;
|
||||
}
|
||||
|
||||
function clickedEditorSend(sender) { log (document.pageform.action);
|
||||
if (document.pageform.action || !validateEditorInput(sender))
|
||||
function clickedEditorSend(sender) {
|
||||
if (document.pageform.action == "send" || !validateEditorInput(sender))
|
||||
return false;
|
||||
|
||||
var input = currentAttachmentInput();
|
||||
|
||||
Reference in New Issue
Block a user