X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Fconfig.php.dist;h=55f34749067d079861fd89c7ca339399984305d4;hb=c0bbeb4cd9264ba1836e20433dad91065445a8bb;hp=d2da367c316cbe4e1a74a26e19d688f0d65a0dfd;hpb=bc45ad5e8318d2ee3182305931205d999aafe26f;p=timetracker.git diff --git a/WEB-INF/config.php.dist b/WEB-INF/config.php.dist index d2da367c..55f34749 100644 --- a/WEB-INF/config.php.dist +++ b/WEB-INF/config.php.dist @@ -212,6 +212,10 @@ define('AUTH_MODULE', 'db'); // 'base_dn' => 'DC=example,DC=com', // Base distinguished name in LDAP catalog. // 'default_domain' => 'example.com', // Default domain. // 'member_of' => array()); // List of groups, membership in which is required for user to be authenticated. + // Leave it empty if membership is not necessary. Otherwise list CN parts only. + // For example: + // array('Ldap Testers') means that the user must be a member Ldap Testers group. + // array('Ldap Testers', 'Ldap Users') means the user must be a member of both Ldap Testers and Ldap Users groups. // define('AUTH_DEBUG', false); // Note: enabling AUTH_DEBUG breaks redirects as debug output is printed before setting redirect header. Do not enable on production systems. @@ -220,5 +224,5 @@ define('AUTH_MODULE', 'db'); // define('MONTHLY_QUOTA_YEAR_START', 2010); // If nothing is specified, it falls back to 2015. // define('MONTHLY_QUOTA_YEAR_END', 2025); // If nothing is specified, it falls back to 2030. -// note input height in time.php -define('NOTE_INPUT_HEIGHT', '40'); +// Height in pixels for the note input field in time.php. Defaults to 40. +// define('NOTE_INPUT_HEIGHT', 100);