Revision 820562e8
Added by NewEraCracker over 9 years ago
src/etc/inc/globals.inc | ||
---|---|---|
54 | 54 |
// Global defines |
55 | 55 |
|
56 | 56 |
// Automatic panel collapse |
57 |
define(COLLAPSIBLE, 0x08);
|
|
58 |
define(SEC_CLOSED, 0x04);
|
|
59 |
define(SEC_OPEN, 0x00);
|
|
57 |
define('COLLAPSIBLE', 0x08);
|
|
58 |
define('SEC_CLOSED', 0x04);
|
|
59 |
define('SEC_OPEN', 0x00);
|
|
60 | 60 |
|
61 | 61 |
// AddPassword method defines |
62 |
define(DMYPWD, "********");
|
|
62 |
define('DMYPWD', "********");
|
|
63 | 63 |
|
64 | 64 |
global $g; |
65 | 65 |
$g = array( |
Also available in: Unified diff
Quote the 1st parameter (constant name) when calling define()