From 86565fe737559cbf4836e7f531f0f6e16c8e86d6 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 28 Feb 2013 10:00:17 -0500 Subject: [PATCH] Avoid potentially inappropriate direct data access. --- module/VuFind/src/VuFind/Auth/Database.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module/VuFind/src/VuFind/Auth/Database.php b/module/VuFind/src/VuFind/Auth/Database.php index 5f6b24de291..f0fa7c1c1ac 100644 --- a/module/VuFind/src/VuFind/Auth/Database.php +++ b/module/VuFind/src/VuFind/Auth/Database.php @@ -81,8 +81,9 @@ class Database extends AbstractBase */ protected function passwordHashingEnabled() { - return isset($this->config->Authentication->hash_passwords) - ? $this->config->Authentication->hash_passwords : false; + $config = $this->getConfig(); + return isset($config->Authentication->hash_passwords) + ? $config->Authentication->hash_passwords : false; } /** -- GitLab