Fix bug in daily project summary CSV export

This commit is contained in:
Frederic Guillot
2015-11-14 15:35:59 -05:00
parent 0e83283ddc
commit d84bf429d6
3 changed files with 5 additions and 3 deletions

View File

@@ -3,8 +3,9 @@ Version 1.0.21 (unreleased)
Bug fixes: Bug fixes:
* cs_CZ display the wrong locale in datetime picker * Loading cs_CZ locale display the wrong language in datetime picker
* Datepicker is closed on blur event * Datepicker is closed unexpectedly on blur event
* Fix bug in daily project summary CSV export
Version 1.0.20 Version 1.0.20
-------------- --------------

View File

@@ -70,7 +70,7 @@ class Export extends Base
*/ */
public function summary() public function summary()
{ {
$this->common('ProjectDailyColumnStats', 'getAggregatedMetrics', t('Summary'), 'summary', t('Daily project summary export')); $this->common('projectDailyColumnStats', 'getAggregatedMetrics', t('Summary'), 'summary', t('Daily project summary export'));
} }
/** /**

View File

@@ -3,6 +3,7 @@
namespace Kanboard\Core\Http; namespace Kanboard\Core\Http;
use Kanboard\Core\Base; use Kanboard\Core\Base;
use Kanboard\Core\Csv;
/** /**
* Response class * Response class