/* PAGE DESCRIPTION: This page is one of the form handlers for the "changeauth.html" form. This page is called if a user chooses to cancel an authorization. */ var success = false; /* If database type is INFORMIX, Set database server to wait 20 seconds if table/row is locked. *** THIS COMMAND IS SPECIFIC TO INFORMIX *** */ if (project.dbType.toUpperCase() == "INFORMIX") database.execute("SET LOCK MODE TO WAIT 20"); // Cancel the transaction // success = Cancel(request.id); // see cancel.js // Print out a confirmation of success/failure for the operation // Confirm(success, "Cancel Authorization"); // see common.js