Fix wrong value for PLUGINS_DIR in config.default.php
This commit is contained in:
@@ -28,6 +28,7 @@ Bug fixes:
|
|||||||
* Fix bug in daily project summary CSV export
|
* Fix bug in daily project summary CSV export
|
||||||
* Fix PHP error when adding a new user with email notification enabled
|
* Fix PHP error when adding a new user with email notification enabled
|
||||||
* Add missing template for activity stream to show event "file.create"
|
* 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
|
Version 1.0.20
|
||||||
--------------
|
--------------
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ define('DEBUG', false);
|
|||||||
define('DEBUG_FILE', __DIR__.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'debug.log');
|
define('DEBUG_FILE', __DIR__.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'debug.log');
|
||||||
|
|
||||||
// Plugins directory
|
// Plugins directory
|
||||||
define('PLUGINS_DIR', 'data'.DIRECTORY_SEPARATOR.'plugins');
|
define('PLUGINS_DIR', 'plugins');
|
||||||
|
|
||||||
// Folder for uploaded files
|
// Folder for uploaded files
|
||||||
define('FILES_DIR', 'data'.DIRECTORY_SEPARATOR.'files');
|
define('FILES_DIR', 'data'.DIRECTORY_SEPARATOR.'files');
|
||||||
|
|||||||
Reference in New Issue
Block a user