Skip to content
Snippets Groups Projects
Commit bc62a787 authored by Demian Katz's avatar Demian Katz
Browse files

Style fixes.

parent a9d03232
Branches
Tags
No related merge requests found
...@@ -501,9 +501,9 @@ class Koha extends AbstractBase ...@@ -501,9 +501,9 @@ class Koha extends AbstractBase
// Newer Koha version that uses bcrypt // Newer Koha version that uses bcrypt
$db_pwd = crypt($password, $stored_hash); $db_pwd = crypt($password, $stored_hash);
} else { } else {
// Koha used to use MD5_BASE64 encoding to save borrowers' passwords, function // Koha used to use MD5_BASE64 encoding to save borrowers' passwords,
// 'rtrim' is used to discard trailing '=' signs, suitable for pushing // function 'rtrim' is used to discard trailing '=' signs, suitable for
// into MySQL database // pushing into MySQL database
$db_pwd = rtrim(base64_encode(pack('H*', md5($password))), '='); $db_pwd = rtrim(base64_encode(pack('H*', md5($password))), '=');
} }
......
/*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. * Functions and event handlers specific to record pages.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment