mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix collision of common constants with other programs like codeception
This commit is contained in:
parent
9d44192889
commit
c5c8b70579
1 changed files with 5 additions and 5 deletions
|
|
@ -165,11 +165,11 @@ define('XDIGITS', '0123456789abcdef');
|
|||
define('ALPHABETS', 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz');
|
||||
define('UPPER', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ');
|
||||
define('LOWER', 'abcdefghijklmnopqrstuvwxyz');
|
||||
define('CR', "\r");
|
||||
define('CRLF', "\r\n");
|
||||
define('LF', "\n");
|
||||
define('Y', 'Y');
|
||||
define('N', 'N');
|
||||
if (!defined('CR')) define('CR', "\r");
|
||||
if (!defined('CRLF')) define('CRLF', "\r\n");
|
||||
if (!defined('LF')) define('LF', "\n");
|
||||
if (!defined('Y')) define('Y', 'Y');
|
||||
if (!defined('N')) define('N', 'N');
|
||||
define('FOLLOW_REQUEST_SSL', 0);
|
||||
define('ENFORCE_SSL', 1);
|
||||
define('RELEASE_SSL', 2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue