diff --git a/module/VuFind/src/VuFind/ILS/Driver/Koha.php b/module/VuFind/src/VuFind/ILS/Driver/Koha.php index 1c0e0d380b7c1c2de1f12a119994aa8cc147e875..ef1e3e689414e32afacc26c8c2487c5a113a7dee 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Koha.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Koha.php @@ -501,9 +501,9 @@ class Koha extends AbstractBase // Newer Koha version that uses bcrypt $db_pwd = crypt($password, $stored_hash); } else { - // Koha used to use MD5_BASE64 encoding to save borrowers' passwords, function - // 'rtrim' is used to discard trailing '=' signs, suitable for pushing - // into MySQL database + // Koha used to use MD5_BASE64 encoding to save borrowers' passwords, + // function 'rtrim' is used to discard trailing '=' signs, suitable for + // pushing into MySQL database $db_pwd = rtrim(base64_encode(pack('H*', md5($password))), '='); } diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js index 49562e343643d6ba2b65c2def1383978760aefed..5d4af0e653f7286d19cd7b4f56435914db027693 100644 --- a/themes/bootstrap3/js/record.js +++ b/themes/bootstrap3/js/record.js @@ -1,4 +1,4 @@ -/*global deparam, extractClassParams, htmlEncode, Lightbox, path, syn_get_widget, vufindString */ +/*global checkSaveStatuses, deparam, extractClassParams, htmlEncode, Lightbox, path, syn_get_widget, vufindString */ /** * Functions and event handlers specific to record pages.