summaryrefslogtreecommitdiff
path: root/app/Template/comment
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-16 22:13:23 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-16 22:13:23 -0500
commit12380b69d40e6a51e27a812b5d2ddd72e039b54f (patch)
tree13276fd23eae00d5577772c13f6e033fd117db38 /app/Template/comment
parent697e661ef5bc17c0639a2bfed08307f8e113816d (diff)
Fix PHP error in pull-request
Diffstat (limited to 'app/Template/comment')
-rw-r--r--app/Template/comment/create.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/comment/create.php b/app/Template/comment/create.php
index 2ef3ee59..8d2b05dc 100644
--- a/app/Template/comment/create.php
+++ b/app/Template/comment/create.php
@@ -2,7 +2,7 @@
<h2><?= t('Add a comment') ?></h2>
</div>
-<form method="post" action="<?= $this->u('comment', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'ajax' => $ajax)) ?>" autocomplete="off">
+<form method="post" action="<?= $this->u('comment', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'ajax' => isset($ajax))) ?>" autocomplete="off">
<?= $this->formCsrf() ?>
<?= $this->formHidden('task_id', $values) ?>
<?= $this->formHidden('user_id', $values) ?>
@@ -30,11 +30,11 @@
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
<?php if (! isset($skip_cancel)): ?>
<?= t('or') ?>
- <?php if ($ajax): ?>
+ <?php if (isset($ajax)): ?>
<?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $task['project_id'])) ?>
<?php else: ?>
<?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
- <?php endif ?>
+ <?php endif ?>
<?php endif ?>
</div>
</form>