summaryrefslogtreecommitdiff
path: root/app/Controller/Comment.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/Comment.php')
-rw-r--r--app/Controller/Comment.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/Controller/Comment.php b/app/Controller/Comment.php
index a608dd1c..c77a4712 100644
--- a/app/Controller/Comment.php
+++ b/app/Controller/Comment.php
@@ -41,7 +41,6 @@ class Comment extends Base
public function create(array $values = array(), array $errors = array())
{
$task = $this->getTask();
- $ajax = $this->request->isAjax() || $this->request->getIntegerParam('ajax');
if (empty($values)) {
$values = array(
@@ -50,15 +49,6 @@ class Comment extends Base
);
}
- if ($ajax) {
- $this->response->html($this->template->render('comment/create', array(
- 'values' => $values,
- 'errors' => $errors,
- 'task' => $task,
- 'ajax' => $ajax,
- )));
- }
-
$this->response->html($this->taskLayout('comment/create', array(
'values' => $values,
'errors' => $errors,