Skip to content

Commit

Permalink
Auth plugin constructors should set success == true when finished
Browse files Browse the repository at this point in the history
https://www.dokuwiki.org/devel:auth_plugins says we need this, no idea
why it worked without this so far.
  • Loading branch information
pief committed Sep 20, 2023
1 parent 51fb878 commit e1d7674
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions auth.php
Expand Up @@ -84,6 +84,8 @@ public function __construct() {
/* No support for logout in this auth plugin. */
$this->cando['logout'] = false;
}

$this->success = true;
}

/**
Expand Down

0 comments on commit e1d7674

Please sign in to comment.