Browse Source

Merge pull request #831 from philippfrenzel/patch-5

add missing return to module template
tags/2.0.0-beta
Alexander Makarov 12 years ago
parent
commit
c0102b4143
  1. 2
      framework/yii/gii/generators/module/templates/controller.php

2
framework/yii/gii/generators/module/templates/controller.php

@ -16,6 +16,6 @@ class DefaultController extends Controller
{ {
public function actionIndex() public function actionIndex()
{ {
$this->render('index'); return $this->render('index');
} }
} }

Loading…
Cancel
Save