]> err.no Git - scalable-opengroupware.org/commitdiff
added validation of recipients, SOGo bug #1220.
authorznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 22 Jul 2005 11:18:39 +0000 (11:18 +0000)
committerznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 22 Jul 2005 11:18:39 +0000 (11:18 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@890 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/UI/WebServerResources/ChangeLog
SOGo/UI/WebServerResources/mailer.js

index b44f8c29d6a1a9da42f0dd7dbfa27e21dbfe3538..aa9a5156990cb10fa04c051e1880cb7203bebd92 100644 (file)
@@ -1,5 +1,7 @@
 2005-07-22  Marcus Mueller  <znek@mulle-kybernetik.com>
 
+       * mailer.js: added validation of recipients
+
        * layout2or3_xlib.js: added (currently used by UIxMailToEditor for
          height calculation)
          
index 4ec0904064be2b84670593a16f15d7273f99409d..f4a6693ffe62b517064420bf231f59f9288489d3 100644 (file)
@@ -100,6 +100,9 @@ function validateEditorInput(sender) {
   field = document.pageform.subject;
   if (field.value == "")
     errortext = errortext + "Missing Subject\n";
+
+  if (!UIxRecipientSelectorHasRecipients())
+    errortext = errortext + "Missing Recipients\n";
   
   if (errortext.length > 0) {
     alert("validation failed:\n" + errortext);
@@ -112,13 +115,6 @@ function clickedEditorSend(sender) {
   if (!validateEditorInput(sender))
     return false;
 
-  // TODO: validate whether we have a recipient! (#1220)
-  /*
-  if (!UIxRecipientSelectorHasRecipients()) {
-    alert("do not have any recipients?!");
-    return false;
-  }
-  */
   document.pageform.action="send";
   document.pageform.submit();
   // if everything is ok, close the window