v0.1.2 Stable 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");