mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00

pluggable modules in the 'auth' directory. Everything is done through authentication_user_login in lib/moodlelib.php As well as the old default "email" confirmation, I added a new type of confirmation "none", which basically does no confirmation at all.
22 lines
636 B
PHP
22 lines
636 B
PHP
<?PHP // $Id$
|
|
|
|
// This file is generally only included from admin/index.php
|
|
// It defines default values for any important configuration variables
|
|
|
|
$defaults = array (
|
|
"theme" => "standard",
|
|
"lang" => "en",
|
|
"locale" => "en",
|
|
"auth" => "email",
|
|
"smtphosts" => "",
|
|
"gdversion" => 1,
|
|
"longtimenosee" => 100,
|
|
"zip" => "/usr/bin/zip",
|
|
"unzip" => "/usr/bin/unzip",
|
|
"slasharguments" => true,
|
|
"proxyhost" => "",
|
|
"proxyport" => "",
|
|
"maxeditingtime" => 1800
|
|
);
|
|
|
|
?>
|