summaryrefslogtreecommitdiff
path: root/app/Core
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-15 21:20:46 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-15 21:20:46 -0400
commit20052c7dd295464c7782350628701675b1f07db7 (patch)
tree5eb416262114feb864694ae05a3c04667f54f727 /app/Core
parent4eaab1f6da1a56376a840231f7b8a10469308f97 (diff)
User import is now a popover
Diffstat (limited to 'app/Core')
-rw-r--r--app/Core/Http/Response.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Core/Http/Response.php b/app/Core/Http/Response.php
index fd67ec95..1c5310d0 100644
--- a/app/Core/Http/Response.php
+++ b/app/Core/Http/Response.php
@@ -172,7 +172,7 @@ class Response extends Base
* @param string $filename
* @return $this
*/
- public function withDownload($filename)
+ public function withFileDownload($filename)
{
$this->withHeader('Content-Disposition', 'attachment; filename="'.$filename.'"');
$this->withHeader('Content-Transfer-Encoding', 'binary');