Skip to content

v0.1.2 Stable release

Compare
Choose a tag to compare
@bbalet bbalet released this 13 Oct 14:22
· 959 commits to master since this release

Enhancement:

  • Authentication via LDAP, see : #7

Known Issue :
The calculation of a leave duration can be wrong if your server time is set to CET/CEST time and not UTC. You can patch function length() application/models/leaves_model.php by changing:

$startTimeStamp = strtotime($start);
$endTimeStamp = strtotime($end);

to:

$startTimeStamp = strtotime($start." UTC");
$endTimeStamp = strtotime($end." UTC");