mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
ae7aafeb53
Hardcoded it into setup.php now - people who are that keen can change it there.
22 lines
600 B
PHP
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
|
|
);
|
|
|
|
?>
|