From b2626ca9c130e4bda3f58661eeacae3802030f79 Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Thu, 24 Apr 2025 10:24:17 +0300 Subject: [PATCH] Fix to default to `useradmin` module even for anon user --- acl/acl-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acl/acl-lib.pl b/acl/acl-lib.pl index 89733ef3b..66ea6b522 100755 --- a/acl/acl-lib.pl +++ b/acl/acl-lib.pl @@ -1717,7 +1717,7 @@ elsif ($mode == 2) { } else { # Try detecting system default first - if (&foreign_available('useradmin')) { + if (&foreign_installed('useradmin')) { &foreign_require('useradmin'); return &useradmin::encrypt_password($pass, $salt, 1); }