Commit cd8e6260 by Alexander Makarov

Fixes #2737

parent f8667f1a
...@@ -34,7 +34,7 @@ $this->params['breadcrumbs'][] = $this->title; ...@@ -34,7 +34,7 @@ $this->params['breadcrumbs'][] = $this->title;
<?= "<?= " ?>Html::a('Delete', ['delete', <?= $urlParams ?>], [ <?= "<?= " ?>Html::a('Delete', ['delete', <?= $urlParams ?>], [
'class' => 'btn btn-danger', 'class' => 'btn btn-danger',
'data' => [ 'data' => [
'confirm' => Yii::t('app', 'Are you sure to delete this item?'), 'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
'method' => 'post', 'method' => 'post',
], ],
]) ?> ]) ?>
......
...@@ -105,7 +105,7 @@ class ActionColumn extends Column ...@@ -105,7 +105,7 @@ class ActionColumn extends Column
$this->buttons['delete'] = function ($url, $model) { $this->buttons['delete'] = function ($url, $model) {
return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [ return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [
'title' => Yii::t('yii', 'Delete'), 'title' => Yii::t('yii', 'Delete'),
'data-confirm' => Yii::t('yii', 'Are you sure to delete this item?'), 'data-confirm' => Yii::t('yii', 'Are you sure you want to delete this item?'),
'data-method' => 'post', 'data-method' => 'post',
'data-pjax' => '0', 'data-pjax' => '0',
]); ]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment