diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-24 18:04:18 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-24 18:04:18 -0400 |
commit | 1fed12e353bed19a0f7ab1167048ab982a100b58 (patch) | |
tree | 74c5f5cda11d05714ec914fbd710530245033fed /app/constants.php | |
parent | 58759f1dfcc516152b6eeb4e223dd3b6c5eb4c39 (diff) |
Remove trailing slash for FILES_DIR
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/constants.php b/app/constants.php index 218d8f78..4c22f760 100644 --- a/app/constants.php +++ b/app/constants.php @@ -93,7 +93,7 @@ defined('ENABLE_XFRAME') or define('ENABLE_XFRAME', true); defined('ENABLE_SYSLOG') or define('ENABLE_SYSLOG', true); // Default files directory -defined('FILES_DIR') or define('FILES_DIR', 'data'.DIRECTORY_SEPARATOR.'files'.DIRECTORY_SEPARATOR); +defined('FILES_DIR') or define('FILES_DIR', 'data'.DIRECTORY_SEPARATOR.'files'); // Escape html inside markdown text defined('MARKDOWN_ESCAPE_HTML') or define('MARKDOWN_ESCAPE_HTML', true); |