diff options
author | Andreas Gohr <andi@splitbrain.org> | 2023-08-31 14:22:35 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2023-08-31 14:22:35 +0200 |
commit | 177d6836e2f75d0e404be9c566e61725852a1e07 (patch) | |
tree | 6f503a52fd65527fbd6722e959f67f2dbcaa78bb /lib/plugins/authad | |
parent | 83bec4752cdd7b0b551fb56e3e2736f3ae1633fa (diff) | |
download | dokuwiki-177d6836e2f75d0e404be9c566e61725852a1e07.tar.gz dokuwiki-177d6836e2f75d0e404be9c566e61725852a1e07.zip |
coding style: control flow whitespaces
Diffstat (limited to 'lib/plugins/authad')
-rw-r--r-- | lib/plugins/authad/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/authad/auth.php b/lib/plugins/authad/auth.php index dd9903a41..72f81cc2b 100644 --- a/lib/plugins/authad/auth.php +++ b/lib/plugins/authad/auth.php @@ -542,7 +542,7 @@ class auth_plugin_authad extends AuthPlugin if (!isset($this->grpsusers[$this->filterToString($filter)]) || count($this->grpsusers[$this->filterToString($filter)]) < ($start+$limit) ) { - if(!isset($this->grpsusers[$this->filterToString($filter)])) { + if (!isset($this->grpsusers[$this->filterToString($filter)])) { $this->grpsusers[$this->filterToString($filter)] = []; } |