You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2007/09/30 20:55:17 UTC

svn commit: r580768 - /ofbiz/branches/release4.0/framework/images/webapp/images/selectall.js

Author: jleroux
Date: Sun Sep 30 11:55:17 2007
New Revision: 580768

URL: http://svn.apache.org/viewvc?rev=580768&view=rev
Log:
Applied fix from trunk for revision: 580767

Modified:
    ofbiz/branches/release4.0/framework/images/webapp/images/selectall.js

Modified: ofbiz/branches/release4.0/framework/images/webapp/images/selectall.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/release4.0/framework/images/webapp/images/selectall.js?rev=580768&r1=580767&r2=580768&view=diff
==============================================================================
--- ofbiz/branches/release4.0/framework/images/webapp/images/selectall.js (original)
+++ ofbiz/branches/release4.0/framework/images/webapp/images/selectall.js Sun Sep 30 11:55:17 2007
@@ -164,9 +164,6 @@
     var agree = confirm(msg);
     if (agree) {
         if (newLocation != null) location.replace(newLocation);
-        return true;
-    } else {
-        return false;
     }
 }
 
@@ -178,10 +175,7 @@
     var agree = confirm(msg);
     if (agree) {
         if (formName != null) document.forms[formName].submit();
-        return true;
-    } else {
-        return false;
-    }
+    } 
 }
 
 function submitFormDisableSubmits(form) {