Fix DB_MySQL_PDO::escape_binary().
[bugdar.git] / install / settings.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2002-2007 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 // this stores all the settings for a new installation
23
24 require_once('./includes/version.php');
25
26 $settings = array(
27 'allownewreg' => '1',
28 'verifyemail' => '1',
29 'moderatenewusers' => '0',
30 'recaptchasitekey' => '',
31 'recaptchasecretkey' => '',
32 'webmasteremail' => 'noreply@bluestatic.org',
33 'trackertitle' => 'Avalon Development Tracker',
34 'trackerversion' => BUGDAR_VERSION,
35 'defaultcomment' => '',
36 'sendwelcomemail' => '1',
37 'authmethod' => 'default',
38 'allowhtml' => '0',
39 'allowrawhtml' => '0',
40 'allowsafehtml' => '1',
41 'defaultseverity' => '2',
42 'defaultpriority' => '3',
43 'defaultstatus' => '1',
44 'defaultresolve' => '1',
45 'defaultassign' => '0',
46 'dateformat' => 'F j, Y h:i:s A',
47 'defaultpp' => '20',
48 'maxpp' => '100',
49 'pagelinks' => '2',
50 'trackerurl' => 'http://localhost/bugtrack',
51 'defaultlanguage' => '1',
52 'syndicateditems' => '10',
53 'hidestatuses' => '0',
54 'defaultsortkey' => 'lastpost',
55 'defaultsortas' => 'desc',
56 'defaulttimezone' => '0',
57 'columnoptions' => 'a:13:{s:5:"bugid";s:1:"1";s:7:"summary";s:1:"2";s:8:"reporter";s:1:"2";s:7:"product";s:1:"3";s:9:"component";s:1:"0";s:7:"version";s:1:"3";s:6:"status";s:1:"4";s:10:"resolution";s:1:"4";s:8:"priority";s:1:"5";s:8:"severity";s:1:"5";s:8:"lastpost";s:1:"6";s:5:"votes";s:1:"0";s:10:"assignedto";s:1:"0";}',
58 'redirectheaders' => '0',
59 );
60