From bc62a7876747447a042e661ad346e6e8ddf7cb9f Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 6 Mar 2015 13:45:50 -0500
Subject: [PATCH] Style fixes.

---
 module/VuFind/src/VuFind/ILS/Driver/Koha.php | 6 +++---
 themes/bootstrap3/js/record.js               | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/Koha.php b/module/VuFind/src/VuFind/ILS/Driver/Koha.php
index 1c0e0d380b7..ef1e3e68941 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 49562e34364..5d4af0e653f 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.
-- 
GitLab