From: phasefx Date: Mon, 26 Jan 2009 00:31:32 +0000 (+0000) Subject: fix logic error with broken chain (chain is an array of functions that get called... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dff4caa89b01edd94ee74951cb7a71a8d064622d;p=Evergreen.git 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 --- 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; } } }