Merge pull request #831 from philippfrenzel/patch-5

add missing return to module template
This commit is contained in:
Alexander Makarov
2013-08-30 06:22:09 -07:00

View File

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