Add settings to disable subtask timer and another to not include closed tasks into CFD

This commit is contained in:
Frederic Guillot
2015-07-25 13:02:20 -04:00
parent 392a75fa0e
commit 8142d43057
25 changed files with 173 additions and 6 deletions

View File

@@ -6,7 +6,13 @@ use PDO;
use Core\Security;
use Model\Link;
const VERSION = 60;
const VERSION = 61;
function version_61($pdo)
{
$pdo->exec("INSERT INTO settings VALUES ('subtask_time_tracking', '1')");
$pdo->exec("INSERT INTO settings VALUES ('cfd_include_closed_tasks', '1')");
}
function version_60($pdo)
{