diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-11-14 15:35:59 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-11-14 15:35:59 -0500 |
commit | d84bf429d6f9c622c2a120ab0180486ee92eb18e (patch) | |
tree | 7511db0a01c27ef208186854bd12928261357f3c /app | |
parent | 0e83283ddc04ee61aaf4335498d5485b33ae175c (diff) |
Fix bug in daily project summary CSV export
Diffstat (limited to 'app')
-rw-r--r-- | app/Controller/Export.php | 2 | ||||
-rw-r--r-- | app/Core/Http/Response.php | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/Controller/Export.php b/app/Controller/Export.php index cdedcb88..c39f58a1 100644 --- a/app/Controller/Export.php +++ b/app/Controller/Export.php @@ -70,7 +70,7 @@ class Export extends Base */ 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')); } /** diff --git a/app/Core/Http/Response.php b/app/Core/Http/Response.php index a793e58b..e16da5f0 100644 --- a/app/Core/Http/Response.php +++ b/app/Core/Http/Response.php @@ -3,6 +3,7 @@ namespace Kanboard\Core\Http; use Kanboard\Core\Base; +use Kanboard\Core\Csv; /** * Response class |