diff options
Diffstat (limited to 'app/Templates/project_disable.php')
-rw-r--r-- | app/Templates/project_disable.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Templates/project_disable.php b/app/Templates/project_disable.php index 39f55570..7a729fa3 100644 --- a/app/Templates/project_disable.php +++ b/app/Templates/project_disable.php @@ -8,7 +8,7 @@ </p> <div class="form-actions"> - <a href="?controller=project&action=disable&project_id=<?= $project['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=project&action=show&project_id=<?= $project['id'] ?>"><?= t('cancel') ?></a> + <?= Helper\a(t('Yes'), 'project', 'disable', array('project_id' => $project['id'], 'disable' => 'yes'), true, 'btn btn-red') ?> + <?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'show', array('project_id' => $project['id'])) ?> </div> </div>
\ No newline at end of file |