X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Fconfig.php.dist;h=1d852c21a456a0a9ba73d42340e2e351f2f85cf6;hb=62bebb89af9afb9c4008d799c67e24988cb3688d;hp=e4fb3c0a31b16d547362756dede2099c96d82aa8;hpb=21a4caf9b07233e69ad230a4d4d5248b589c205b;p=timetracker.git diff --git a/WEB-INF/config.php.dist b/WEB-INF/config.php.dist index e4fb3c0a..1d852c21 100644 --- a/WEB-INF/config.php.dist +++ b/WEB-INF/config.php.dist @@ -37,16 +37,15 @@ set_include_path(realpath(dirname(__FILE__).'/lib/pear') . PATH_SEPARATOR . get_ // CHANGE 3 PARAMETERS HERE! // In this example: "root" is username, "no" is password, "dbname" is database name. // -define('DSN', 'mysqli://root:no@localhost/dbname?charset=utf8'); +define('DSN', 'mysqli://root:no@localhost/dbname?charset=utf8mb4'); // Do NOT change charset unless you upgraded from an older Time Tracker where charset was NOT specified // and now you see some corrupted characters. See http://dev.mysql.com/doc/refman/5.0/en/charset-mysql.html -// MULTITEAM_MODE option defines whether users can create their own teams. +// MULTITEAM_MODE option defines whether users can create their own top groups (organizations). +// When false, a Time Tracker server is managed by admin, who creates top groups (one or many). // // Available values are true or false. -// If true users can create their own teams. -// If false only admin can create teams. // define('MULTITEAM_MODE', true); @@ -70,22 +69,6 @@ define('APP_NAME', ''); // define('OLD_PASSWORDS', true); -// COST_ON_REPORTS - defines the availability of the Cost field on the Reports page. -// -define('COST_ON_REPORTS', true); - - -// READONLY_START_FINISH - defines whether the start and finish fields on time entry pages are read-only. -// This applies to regular users only. Manager and co-managers can edit these values. -// -// define('READONLY_START_FINISH', false); - - -// FUTURE_ENTRIES - defines whether users can create entries for future dates. Defaults to true. -// -// define('FUTURE_ENTRIES', false); - - // WEEKEND_START_DAY // // This option defines which days are highlighted with weekend color. @@ -224,3 +207,6 @@ define('AUTH_MODULE', 'db'); // Height in pixels for the note input field in time.php. Defaults to 40. // define('NOTE_INPUT_HEIGHT', 100); + +// A temporary config option while development of subgroup support is ongoing. To be removed later. +// define('SUBGROUP_DEBUG', false);