[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. 9cfea167bfc28a4114a7e560fb26ec7294d9d7be

Evergreen Git git at git.evergreen-ils.org
Fri Mar 15 12:55:32 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, rel_2_2 has been updated
       via  9cfea167bfc28a4114a7e560fb26ec7294d9d7be (commit)
      from  c3d1f4d883710af28010fee230056806208e2052 (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 9cfea167bfc28a4114a7e560fb26ec7294d9d7be
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 0158080..22b66f1 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