summaryrefslogtreecommitdiff
path: root/app/constants.php
diff options
context:
space:
mode:
authorSemyon Novikov <me@sdfgh153.ru>2015-03-25 10:08:50 +0500
committerSemyon Novikov <me@sdfgh153.ru>2015-03-25 10:08:50 +0500
commit2db1af88bbc2c9d72765577fd09ac588c5e67ebf (patch)
tree50a2f9a285d6eba9c8e93e4699d6ed19fb52d04e /app/constants.php
parent93c286ce8791db610784c8177e3ba0653b1b6082 (diff)
Missing default value for MARKDOWN_ESCAPED constant
Also removed stray trailing whitespace in Helper.php
Diffstat (limited to 'app/constants.php')
-rw-r--r--app/constants.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php
index 82d26f2c..8c23da81 100644
--- a/app/constants.php
+++ b/app/constants.php
@@ -74,3 +74,5 @@ defined('ENABLE_XFRAME') or define('ENABLE_XFRAME', true);
// Default files directory
defined('FILES_DIR') or define('FILES_DIR', 'data/files/');
+// Escape html inside markdown text
+define('MARKDOWN_ESCAPED', true);