Commit e94b4555 by Philipp Frenzel

add missing return to module template

I think according to the framework it should return the render and otherwise the browser will stay blank...
parent d9d00064
...@@ -16,6 +16,6 @@ class DefaultController extends Controller ...@@ -16,6 +16,6 @@ class DefaultController extends Controller
{ {
public function actionIndex() public function actionIndex()
{ {
$this->render('index'); return $this->render('index');
} }
} }
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