From 2af8a3fc1c0974fc40047d7e6a82aa8f27be9b3c Mon Sep 17 00:00:00 2001 From: claudiotam Date: Fri, 28 Nov 2025 10:33:07 +0000 Subject: [PATCH] add check for singleservice and disable pwchange --- auth.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/auth.php b/auth.php index 0e57743..f7775b4 100644 --- a/auth.php +++ b/auth.php @@ -26,6 +26,9 @@ public function __construct() { parent::__construct(); $this->cando['external'] = true; + if ($this->getConf('singleService')) { + $this->cando['modPass'] = false; + } $this->hlp = $this->loadHelper('oauth'); }