summaryrefslogtreecommitdiffstats
path: root/application/config/constants.php
diff options
context:
space:
mode:
authorJason Neal <jtneal@gmail.com>2016-01-13 14:46:03 +0100
committerJason Neal <jtneal@gmail.com>2016-01-13 14:46:03 +0100
commitd1688af15458af8684a109e5e65f41a8a02786fb (patch)
tree25dc23c7b40f1e84a1a3009a708da9d8a77d24e2 /application/config/constants.php
parent0bf5b26f99d940ae7ebd3780b1d60e37f8045ea3 (diff)
Fix type in default constants configuration
The word "destructive" was misspelled in the conditional portion.
Diffstat (limited to 'application/config/constants.php')
-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');