Commit 83b1d376 authored by Christopher Stebe's avatar Christopher Stebe

fixed $actionColumnTemplateString in crud default view index.php

parent 95fc8d4f
Pipeline #12554 passed with stages
in 3 minutes and 7 seconds
Changelog
=========
### 0.8.3
* fixed `$actionColumnTemplateString` in crud default view index.php
### 0.8.2
* fixes for message catalogue / translatables
......
......@@ -75,7 +75,7 @@ $actionColumnTemplate = implode(' ', $actionColumnTemplates);
$actionColumnTemplateString = $actionColumnTemplate;
} else {
Yii::$app->view->params['pageButtons'] = Html::a('<span class="glyphicon glyphicon-plus"></span> ' . <?= $generator->generateString('New') ?>, ['create'], ['class' => 'btn btn-success']);
$actionColumnTemplateString = "'{view} {update} {delete}'";
$actionColumnTemplateString = "{view} {update} {delete}";
}
<?php
echo '?>';
......
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