diff options
author | Andrey Andreev <narf@devilix.net> | 2016-01-13 14:59:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-01-13 14:59:42 +0100 |
commit | e5563f8a1d939666b70b2deac10b0e368f6de2e5 (patch) | |
tree | 25dc23c7b40f1e84a1a3009a708da9d8a77d24e2 | |
parent | 0bf5b26f99d940ae7ebd3780b1d60e37f8045ea3 (diff) | |
parent | d1688af15458af8684a109e5e65f41a8a02786fb (diff) |
Merge pull request #4378 from jtneal/patch-1
[ci skip] Fix a defined() typo in config/constants.php
-rw-r--r-- | application/config/constants.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/constants.php b/application/config/constants.php index e8d2c00ea..18d3b4b76 100644 --- a/application/config/constants.php +++ b/application/config/constants.php @@ -42,7 +42,7 @@ defined('DIR_WRITE_MODE') OR define('DIR_WRITE_MODE', 0755); defined('FOPEN_READ') OR define('FOPEN_READ', 'rb'); defined('FOPEN_READ_WRITE') OR define('FOPEN_READ_WRITE', 'r+b'); defined('FOPEN_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care -defined('FOPEN_READ_WRITE_CREATE_DESCTRUCTIVE') OR define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care +defined('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care defined('FOPEN_WRITE_CREATE') OR define('FOPEN_WRITE_CREATE', 'ab'); defined('FOPEN_READ_WRITE_CREATE') OR define('FOPEN_READ_WRITE_CREATE', 'a+b'); defined('FOPEN_WRITE_CREATE_STRICT') OR define('FOPEN_WRITE_CREATE_STRICT', 'xb'); |