Files
moodle/lib/defaults.php
T
martin 74944b734d Most of the configuration variables have been moved out of the config.php
file and into a database, where they can be edited using a new admin form
called "Configure variables".
2002-09-19 12:01:55 +00:00

23 lines
631 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,
"errorlevel" => 7
);
?>