diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-15 21:20:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-15 21:20:46 -0400 |
commit | 20052c7dd295464c7782350628701675b1f07db7 (patch) | |
tree | 5eb416262114feb864694ae05a3c04667f54f727 /app/Core/Http | |
parent | 4eaab1f6da1a56376a840231f7b8a10469308f97 (diff) |
User import is now a popover
Diffstat (limited to 'app/Core/Http')
-rw-r--r-- | app/Core/Http/Response.php | 2 |
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'); |