summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-01-13 14:59:42 +0100
committerAndrey Andreev <narf@devilix.net>2016-01-13 15:00:19 +0100
commit05268d6d08afb3b66e7edd5877c597ef7ea2113a (patch)
treebad7bba6266c4936a20279688333647a23a05dd5 /application
parent4307bff0a4ae884d57cc0c0fa8f54de6c05000e7 (diff)
Merge pull request #4378 from jtneal/patch-1
[ci skip] Fix a defined() typo in config/constants.php
Diffstat (limited to 'application')
-rw-r--r--application/config/constants.php2
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');