diff options
Diffstat (limited to 'app/Controller/Base.php')
-rw-r--r-- | app/Controller/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php index fb64bcf3..02d87aae 100644 --- a/app/Controller/Base.php +++ b/app/Controller/Base.php @@ -189,7 +189,7 @@ abstract class Base extends \Kanboard\Core\Base */ protected function taskLayout($template, array $params) { - $params['ajax'] = $this->request->isAjax() || $this->request->getIntegerParam('ajax') === 1; + $params['ajax'] = $this->request->isAjax(); $content = $this->template->render($template, $params); if ($params['ajax']) { |