[open-ils-commits] [GIT] Evergreen ILS branch master updated. 79232f54739f371331a3d9e573cffc8621d23035
Evergreen Git
git at git.evergreen-ils.org
Fri Mar 15 12:54:45 EDT 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via 79232f54739f371331a3d9e573cffc8621d23035 (commit)
from 73d20e99018fd4361813595cd43c7bf28a108ae4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 79232f54739f371331a3d9e573cffc8621d23035
Author: Jason Etheridge <jason at esilibrary.com>
Date: Fri Jun 22 12:41:20 2012 -0400
fix typo preventing transit abort error dialogs
Signed-off-by: Jason Etheridge <jason at esilibrary.com>
Signed-off-by: Galen Charlton <gmc at esilibrary.com>
diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js
index a7055ae..af7442f 100644
--- a/Open-ILS/xul/staff_client/server/circ/util.js
+++ b/Open-ILS/xul/staff_client/server/circ/util.js
@@ -35,10 +35,10 @@ circ.util.abort_transits = function(selection_list) {
if (typeof robj.ilsevent != 'undefined') {
switch(Number(robj.ilsevent)) {
case 1225 /* TRANSIT_ABORT_NOT_ALLOWED */ :
- alert(document.getElementById('circString').getFormattedString('staff.circ.utils.abort_transits.not_allowed', [copy_id]) + '\n' + robj.desc);
+ alert(document.getElementById('circStrings').getFormattedString('staff.circ.utils.abort_transits.not_allowed', [copy_id]) + '\n' + robj.desc);
break;
case 1504 /* ACTION_TRANSIT_COPY_NOT_FOUND */ :
- alert(document.getElementById('circString').getString('staff.circ.utils.abort_transits.not_found'));
+ alert(document.getElementById('circStrings').getString('staff.circ.utils.abort_transits.not_found'));
break;
case 5000 /* PERM_FAILURE */ :
break;
@@ -49,7 +49,7 @@ circ.util.abort_transits = function(selection_list) {
}
}
} catch(E) {
- obj.error.standard_unexpected_error_alert(document.getElementById('circString').getString('staff.circ.utils.abort_transits.unexpected_error'),E);
+ obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getString('staff.circ.utils.abort_transits.unexpected_error'),E);
}
}
};
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/xul/staff_client/server/circ/util.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list