[open-ils-commits] [GIT] Evergreen ILS branch rel_2_3 updated. 95c7c7da42edb6f5a3f9ec0c6aedd9f84e0f46cb

Evergreen Git git at git.evergreen-ils.org
Fri Mar 15 12:55:09 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_3 has been updated
       via  95c7c7da42edb6f5a3f9ec0c6aedd9f84e0f46cb (commit)
      from  9ec354a62cb6bfaeb9713edfcd8a721e4ca93ab3 (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 95c7c7da42edb6f5a3f9ec0c6aedd9f84e0f46cb
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 5e766b2..a1be40d 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