summaryrefslogtreecommitdiff
path: root/app/Controller/Captcha.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-20 18:42:06 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-20 18:42:06 -0400
commit0fc020d3033a12ba42a650f3002cd50034368876 (patch)
tree20d1700b046245c1a90300044e4dbafec645553d /app/Controller/Captcha.php
parentd20e2e94eb4274951526a48cb0b67beac7062d09 (diff)
Added missing response::send() after refactoring
Diffstat (limited to 'app/Controller/Captcha.php')
-rw-r--r--app/Controller/Captcha.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Captcha.php b/app/Controller/Captcha.php
index fb9d6fe3..f6c717b3 100644
--- a/app/Controller/Captcha.php
+++ b/app/Controller/Captcha.php
@@ -19,7 +19,7 @@ class Captcha extends BaseController
*/
public function image()
{
- $this->response->withContentType('image/jpeg');
+ $this->response->withContentType('image/jpeg')->send();
$builder = new CaptchaBuilder;
$builder->build();