From 6dce28027aa83557452c94cae383e08cebce60b0 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Mon, 7 Jan 2013 13:33:21 -0500
Subject: [PATCH] Style fix.

---
 module/VuFind/src/VuFind/Auth/Database.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/module/VuFind/src/VuFind/Auth/Database.php b/module/VuFind/src/VuFind/Auth/Database.php
index 144ac8dd18f..4d16163ef53 100644
--- a/module/VuFind/src/VuFind/Auth/Database.php
+++ b/module/VuFind/src/VuFind/Auth/Database.php
@@ -147,9 +147,9 @@ class Database extends AbstractBase
      *
      * @return bool
      */
-    protected function checkPassword($input_password, $userRow)
+    protected function checkPassword($password, $userRow)
     {
-        return $input_password == $userRow->password;
+        return $password == $userRow->password;
     }
 
 
-- 
GitLab