Use library local patron barcode regex in myopac
authorJeff Godin <jgodin@tadl.org>
Tue, 3 Apr 2012 14:37:24 +0000 (10:37 -0400)
committerJeff Godin <jgodin@tadl.org>
Tue, 3 Apr 2012 14:37:24 +0000 (10:37 -0400)
Use library local patron barcode regex in myopac, so that
username vs barcode detection will be correct.

The regex used at login is maintained outside of the skin,
so we're already set there.

Signed-off-by: Jeff Godin <jgodin@tadl.org>
Open-ILS/web/opac/skin/tadlv2/js/myopac.js

index 6b30463..40ea2ff 100644 (file)
@@ -1069,7 +1069,7 @@ function myOPACUpdateUsername() {
                return;
        }
 
-    r = fetchOrgSettingDefault(globalOrgTree.id(), 'opac.barcode_regex');
+    r = fetchOrgSettingDefault(getLocation(), 'opac.barcode_regex');
     if(r) REGEX_BARCODE = new RegExp(r);
 
     if(username.match(REGEX_BARCODE)) {