diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 12:28:28 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 12:28:28 -0400 |
commit | 2230dd4e6b148346c0ec596b9e3e12996a762ed8 (patch) | |
tree | ef99ccde4f8b18592a3fb06a6ec45162c501fe38 /config.default.php | |
parent | a750b8ab2a0cb715da6fd9025a7ec8375db68a4d (diff) |
Code refactoring (add autoloader and change files organization)
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index 99acb883..6810ce9d 100644 --- a/config.default.php +++ b/config.default.php @@ -1,7 +1,10 @@ <?php // Auto-refresh frequency in seconds for the public board view (60 seconds by default) -define('AUTO_REFRESH_DURATION', 60); +define('BOARD_PUBLIC_CHECK_INTERVAL', 60); + +// Board refresh frequency in seconds (the value 0 disable this feature, 10 seconds by default) +define('BOARD_CHECK_INTERVAL', 10); // Database driver: sqlite or mysql (sqlite by default) define('DB_DRIVER', 'sqlite'); |