moodle/lib/defaults.php
moodler ae384ef160 New configuration variable: secureforms (defaults to 'true')
Replaces the old $CFG->buggy_referer (reverses it, in fact) and can
now be set in the configuration page (no need for it in config.php).
2003-05-15 15:59:52 +00:00

38 lines
1.1 KiB
PHP

<?PHP // $Id$
// This file is generally only included from admin/index.php
// It defines default values for any important configuration variables
$defaults = array (
"auth" => "email",
"changepassword" => true,
"country" => "",
"debug" => 7,
"secureforms" => true,
"framename" => "_top",
"gdversion" => 1,
"guestloginbutton" => 1,
"htmleditor" => true,
"lang" => "en",
"langdir" => "LTR",
"langmenu" => 1,
"langlist" => "",
"locale" => "en",
"loglifetime" => 0,
"longtimenosee" => 100,
"maxeditingtime" => 1800,
"prefix" => "",
"proxyhost" => "",
"proxyport" => "",
"sessiontimeout" => 7200,
"slasharguments" => 1,
"smtphosts" => "",
"smtppass" => "",
"smtpuser" => "",
"theme" => "standard",
"unzip" => "",
"zip" => ""
);
?>