From 472d15a6392e3f41bd0bf8b31ce68da8666ae355 Mon Sep 17 00:00:00 2001 From: Olivier Beytrison Date: Wed, 10 May 2017 09:32:35 +0200 Subject: [PATCH] fix: Fixed radius debug mode (#6623) --- html/includes/authentication/radius.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/includes/authentication/radius.inc.php b/html/includes/authentication/radius.inc.php index 435f26a40f..ffcccb242b 100644 --- a/html/includes/authentication/radius.inc.php +++ b/html/includes/authentication/radius.inc.php @@ -13,7 +13,7 @@ function authenticate($username, $password) return 0; } else { if ($debug) { - $radius->SetDebugMode(true); + $radius->SetDebug(true); } $rad = $radius->AccessRequest($username, $password); if ($rad === true) {