Commit c0102b41 by Alexander Makarov

Merge pull request #831 from philippfrenzel/patch-5

add missing return to module template
parents d9d00064 e94b4555
...@@ -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