summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-11-18 20:43:25 -0500
committerFrederic Guillot <fred@kanboard.net>2015-11-18 20:43:25 -0500
commit0a8c111ca9a44e26cfa99de21fa8426a33326a47 (patch)
tree44b89f47845e5cb874e9095a28de437be40dd35e
parentadb35896d8c5bcc6673188921868e472ba35278e (diff)
Fix wrong value for PLUGINS_DIR in config.default.php
-rw-r--r--ChangeLog1
-rw-r--r--config.default.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b3490ff7..833350fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -28,6 +28,7 @@ Bug fixes:
* Fix bug in daily project summary CSV export
* Fix PHP error when adding a new user with email notification enabled
* Add missing template for activity stream to show event "file.create"
+* Fix wrong value for PLUGINS_DIR in config.default.php
Version 1.0.20
--------------
diff --git a/config.default.php b/config.default.php
index a790e1ea..91bb8d17 100644
--- a/config.default.php
+++ b/config.default.php
@@ -11,7 +11,7 @@ define('DEBUG', false);
define('DEBUG_FILE', __DIR__.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'debug.log');
// Plugins directory
-define('PLUGINS_DIR', 'data'.DIRECTORY_SEPARATOR.'plugins');
+define('PLUGINS_DIR', 'plugins');
// Folder for uploaded files
define('FILES_DIR', 'data'.DIRECTORY_SEPARATOR.'files');