Author: jleroux
Date: Sun Sep 30 11:54:35 2007
New Revision: 580767
URL:
http://svn.apache.org/viewvc?rev=580767&view=revLog:
A patch from Bilgin Ibryam "javascript confirmation bug" (
https://issues.apache.org/jira/browse/OFBIZ-1257) - OFBIZ-1257
Modified:
ofbiz/trunk/framework/images/webapp/images/selectall.js
Modified: ofbiz/trunk/framework/images/webapp/images/selectall.js
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/selectall.js?rev=580767&r1=580766&r2=580767&view=diff==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/selectall.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/selectall.js Sun Sep 30 11:54:35 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) {