From 25a5871a591a58a3d9a34e25e973418bb5e83e0c Mon Sep 17 00:00:00 2001 From: Ralf Lang Date: Mon, 12 May 2025 20:52:22 +0200 Subject: [PATCH] fix: The 'login' driver does not use the binary path --- lib/Horde/Auth/Login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Horde/Auth/Login.php b/lib/Horde/Auth/Login.php index 636c6e8..e890751 100644 --- a/lib/Horde/Auth/Login.php +++ b/lib/Horde/Auth/Login.php @@ -71,7 +71,7 @@ protected function _authenticate($userId, $credentials) throw new Horde_Auth_Exception('', Horde_Auth::REASON_BADLOGIN); } - $proc = @popen($this->_location . ' -c /bin/true ' . $userId, 'w'); + $proc = @popen($this->_params['location'] . ' -c /bin/true ' . $userId, 'w'); if (!is_resource($proc)) { throw new Horde_Auth_Exception('', Horde_Auth::REASON_FAILED); }