74944b73 |
1 | <?PHP // $Id$ |
2 | |
3 | // This file is generally only included from admin/index.php |
4 | // It defines default values for any important configuration variables |
5 | |
6 | $defaults = array ( |
7 | "theme" => "standard", |
8 | "lang" => "en", |
541117b6 |
9 | "langdir" => "LTR", |
74944b73 |
10 | "locale" => "en", |
faebaf0f |
11 | "auth" => "email", |
74944b73 |
12 | "smtphosts" => "", |
9f58537a |
13 | "smtpuser" => "", |
14 | "smtppass" => "", |
74944b73 |
15 | "gdversion" => 1, |
16 | "longtimenosee" => 100, |
17 | "zip" => "/usr/bin/zip", |
18 | "unzip" => "/usr/bin/unzip", |
0095d5cd |
19 | "slasharguments" => 1, |
20 | "htmleditor" => true, |
74944b73 |
21 | "proxyhost" => "", |
22 | "proxyport" => "", |
ae7aafeb |
23 | "maxeditingtime" => 1800 |
74944b73 |
24 | ); |
25 | |
26 | ?> |