From dff4caa89b01edd94ee74951cb7a71a8d064622d Mon Sep 17 00:00:00 2001 From: phasefx Date: Mon, 26 Jan 2009 00:31:32 +0000 Subject: [PATCH] fix logic error with broken chain (chain is an array of functions that get called sequentially and are tied together via repeated setTimeout calls, in order to give the UI chances to update) git-svn-id: svn://svn.open-ils.org/ILS/trunk@11956 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/util/exec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/xul/staff_client/chrome/content/util/exec.js b/Open-ILS/xul/staff_client/chrome/content/util/exec.js index 324db773eb..2bed8293af 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/exec.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/exec.js @@ -59,6 +59,7 @@ util.exec.prototype = { } } else { dump('chain broken\n'); + return; } } } -- 2.11.0