Browse Source

add missing return to module template

I think according to the framework it should return the render and otherwise the browser will stay blank...
tags/2.0.0-beta
Philipp Frenzel 11 years ago
parent
commit
e94b455535
  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