[open-ils-commits] [GIT] Evergreen ILS branch master updated. f70f6f6c26342e35c8514b2660588144b6b8001d
Evergreen Git
git at git.evergreen-ils.org
Fri Sep 1 17:40:27 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, master has been updated
via f70f6f6c26342e35c8514b2660588144b6b8001d (commit)
from b930174c8c3cf75309993e9f90d9fb8d816e4d23 (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 f70f6f6c26342e35c8514b2660588144b6b8001d
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 92c4a5f..91e6067 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
@@ -1079,9 +1079,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