moodle/lib/defaults.php
martin ae7aafeb53 Got rid of errorlevel configuration - more trouble than it's worth!
Hardcoded it into setup.php now - people who are that keen can change
it there.
2002-09-19 14:07:24 +00:00

22 lines
600 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",
"smtphosts" => "",
"gdversion" => 1,
"longtimenosee" => 100,
"zip" => "/usr/bin/zip",
"unzip" => "/usr/bin/unzip",
"slasharguments" => true,
"proxyhost" => "",
"proxyport" => "",
"maxeditingtime" => 1800
);
?>