Fix DB_MySQL_PDO::escape_binary().
[bugdar.git] / includes / definitions.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 $bugsys->columns = array(
23 'bugid' => 1,
24 'summary' => 2,
25 'reporter' => 4,
26 'product' => 8,
27 'component' => 16,
28 'version' => 32,
29 'status' => 64,
30 'resolution' => 128,
31 'priority' => 256,
32 'severity' => 512,
33 'lastpost' => 1024,
34 'votes' => 2048,
35 'assignedto' => 4096
36 );
37
38 $bugsys->columnNames = array(
39 'bugid' => T('ID'),
40 'summary' => T('Summary'),
41 'reporter' => T('Reporter'),
42 'product' => T('Product'),
43 'component' => T('Component'),
44 'version' => T('Version'),
45 'status' => T('Status'),
46 'resolution' => T('Resolution'),
47 'priority' => T('Priority'),
48 'severity' => T('Severity'),
49 'lastpost' => T('Last Post'),
50 'votes' => T('Votes'),
51 'assignedto' => T('Assigned To')
52 );
53