I'm using Codeigniter 2.1.3 with HMVC (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/overview)
I've tried to run two modules in a view as shown below
<?php
echo Modules::run('contact/mosite/contactform');
echo Modules::run('social/mosite/facebook');
?>
First module is running well, but second got failed to run.
If I run only second module, it will works fine.
I think the issue is on the controller name, both controller have same name.
How to fix this issue?