Commit 73cdbb37 by iJackUA

Fix parenthesis typo in CRUD index template

it was causing blocking PHP error
parent dde7d731
...@@ -63,7 +63,7 @@ foreach ($generator->getTableSchema()->columns as $column) { ...@@ -63,7 +63,7 @@ foreach ($generator->getTableSchema()->columns as $column) {
'class' => 'item', 'class' => 'item',
), ),
'itemView' => function ($model, $key, $index, $widget) { 'itemView' => function ($model, $key, $index, $widget) {
return Html::a(Html::encode($model-><?php echo $nameAttribute; ?>), array('view', <?php echo $urlParams; ?>); return Html::a(Html::encode($model-><?php echo $nameAttribute; ?>), array('view', <?php echo $urlParams; ?>));
}, },
)); ?> )); ?>
<?php endif; ?> <?php endif; ?>
......
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