add missing return to module template

I think according to the framework it should return the render and otherwise the browser will stay blank...
This commit is contained in:
Philipp Frenzel
2013-08-30 15:05:00 +02:00
parent d9d000649a
commit e94b455535

View File

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