Skip to content
Snippets Groups Projects
Commit abe88ecb authored by Michael Klier's avatar Michael Klier
Browse files

do not show basic auth class in configuration manager

darcs-hash:20081011165529-23886-b3e15b6316b57548dc040757d90d397fbb695dd4.gz
parent 2eccbdaa
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@ if (!class_exists('setting_authtype')) {
// populate $this->_choices with a list of available auth mechanisms
$authtypes = glob(DOKU_INC.'inc/auth/*.class.php');
$authtypes = preg_replace('#^.*/([^/]*)\.class\.php$#i','$1', $authtypes);
unset($authtypes[array_search('basic', $authtypes)]);
sort($authtypes);
$this->_choices = $authtypes;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment