2002-09-19 12:01:55 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
|
|
|
|
// This file is generally only included from admin/index.php
|
|
|
|
// It defines default values for any important configuration variables
|
|
|
|
|
|
|
|
$defaults = array (
|
2003-05-03 06:50:29 +00:00
|
|
|
"auth" => "email",
|
|
|
|
"changepassword" => true,
|
|
|
|
"country" => "",
|
|
|
|
"debug" => 7,
|
|
|
|
"framename" => "_top",
|
2003-07-30 04:59:29 +00:00
|
|
|
"frontpage" => 0,
|
2003-05-03 06:50:29 +00:00
|
|
|
"gdversion" => 1,
|
|
|
|
"guestloginbutton" => 1,
|
|
|
|
"htmleditor" => true,
|
2002-11-20 15:04:21 +00:00
|
|
|
"lang" => "en",
|
|
|
|
"langdir" => "LTR",
|
2003-05-03 06:50:29 +00:00
|
|
|
"langmenu" => 1,
|
2003-05-14 03:37:47 +00:00
|
|
|
"langlist" => "",
|
2002-11-20 15:04:21 +00:00
|
|
|
"locale" => "en",
|
2003-04-27 06:41:53 +00:00
|
|
|
"loglifetime" => 0,
|
2003-05-03 06:50:29 +00:00
|
|
|
"longtimenosee" => 100,
|
2002-11-20 15:16:03 +00:00
|
|
|
"maxeditingtime" => 1800,
|
2003-01-01 08:33:22 +00:00
|
|
|
"prefix" => "",
|
2003-05-03 06:50:29 +00:00
|
|
|
"proxyhost" => "",
|
|
|
|
"proxyport" => "",
|
2003-07-30 04:59:29 +00:00
|
|
|
"secureforms" => false,
|
2003-01-24 04:31:58 +00:00
|
|
|
"sessiontimeout" => 7200,
|
2003-05-03 06:50:29 +00:00
|
|
|
"slasharguments" => 1,
|
|
|
|
"smtphosts" => "",
|
|
|
|
"smtppass" => "",
|
|
|
|
"smtpuser" => "",
|
|
|
|
"theme" => "standard",
|
|
|
|
"unzip" => "",
|
|
|
|
"zip" => ""
|
2002-09-19 12:01:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
?>
|