Fix proper param order and use main function name instead of alias 'join'.

This commit is contained in:
Syntaxseed 2020-09-30 13:46:46 -04:00 committed by Andreas Gohr
parent 0afbc17471
commit 8368419bb5
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ function check(){
if($INFO['userinfo']['name']){
msg('You are currently logged in as '.$INPUT->server->str('REMOTE_USER').' ('.$INFO['userinfo']['name'].')',0);
msg('You are part of the groups '.join($INFO['userinfo']['grps'],', '),0);
msg('You are part of the groups '.implode(', ', $INFO['userinfo']['grps']),0);
}else{
msg('You are currently not logged in',0);
}