Kimai time management system (PHP 5.6 / MySQL) with custom extensions: - Budget tracking (ki_budget) - Change request form (ki_changerequest) - Invoice generation (ki_invoice) - Expense tracking (ki_expenses) - Flexi time (ki_flexitime) - Export, admin panel, timesheets, tasks, summary Database: ~900K time entries, 2,000+ users, 439 projects. Config: includes/autoconf.php — localhost/kimai/kimai
9 lines
281 B
PHP
9 lines
281 B
PHP
<?php
|
|
$kga['version'] = "0.9.2";
|
|
// $kga['revision'] is the sourceforge SVN revision.
|
|
$kga['revision'] = '0440';
|
|
// when Kimai moved from syncom to sourceforge we had r866 ...
|
|
$kga['revision'] = (int)$kga['revision'] += 866;
|
|
$kga['status'] = ""; // leave blank if stable ...
|
|
?>
|