[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. 0f4d86fc1bd6face401892e7be5bb106ee652142

Evergreen Git git at git.evergreen-ils.org
Fri Sep 1 17:41:29 EDT 2017


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_12 has been updated
       via  0f4d86fc1bd6face401892e7be5bb106ee652142 (commit)
      from  a0cd829eb257fa226a2b46e1b0d9cf33ab1c3d75 (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 0f4d86fc1bd6face401892e7be5bb106ee652142
Author: Jason Boyer <jboyer at library.in.gov>
Date:   Fri Sep 1 09:49:36 2017 -0400

    LP1714512: Patron Edit Barcode Validation
    
    There are 2 barcode related regular expression OUS
    but the web user editor is using the wrong one.
    This branch corrects that.
    
    Signed-off-by: Jason Boyer <jboyer at library.in.gov>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>

diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js b/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js
index 61d3f58..d68d950 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js
@@ -1062,9 +1062,9 @@ angular.module('egCoreMod')
                 new RegExp(service.org_settings['opac.username_regex']);
         }
 
-        if (service.org_settings['opac.barcode_regex']) {
+        if (service.org_settings['ui.patron.edit.ac.barcode.regex']) {
             patterns.ac.barcode = 
-                new RegExp(service.org_settings['opac.barcode_regex']);
+                new RegExp(service.org_settings['ui.patron.edit.ac.barcode.regex']);
         }
 
         if (service.org_settings['global.password_regex']) {

-----------------------------------------------------------------------

Summary of changes:
 .../web/js/ui/default/staff/circ/patron/regctl.js  |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list