Skip to content

Commit

Permalink
Changed combo2 call options
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed May 14, 2015
1 parent 11923c6 commit 7b95ac0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions views/db/_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@

<?php
print $form->field($model, 'client')->widget(Combo2::className(), [
'class' => \hipanel\modules\client\assets\combo2\Client::className()
'type' => \hipanel\modules\client\assets\combo2\Client::className()
]);
print $form->field($model, 'server')->widget(Combo2::className(), [
'class' => \hipanel\modules\server\assets\combo2\Server::className()
'type' => \hipanel\modules\server\assets\combo2\Server::className()
]);
print $form->field($model, 'account')->widget(Combo2::className(), [
'class' => \hipanel\modules\hosting\assets\combo2\Account::className()
'type' => \hipanel\modules\hosting\assets\combo2\Account::className()
]);
print $form->field($model, 'service_id')->widget(Combo2::className(), [
'class' => \hipanel\modules\hosting\assets\combo2\DbService::className()
'type' => \hipanel\modules\hosting\assets\combo2\DbService::className()
]);

print $form->field($model, 'name');
Expand Down
2 changes: 1 addition & 1 deletion views/db/create.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/* @var $this yii\web\View */
/* @var $model frontend\modules\ticket\models\Thread */
/* @var $model hipanel\modules\ticket\models\Thread */
/* @var $type string */

$this->title = $title[$type];
Expand Down

0 comments on commit 7b95ac0

Please sign in to comment.