26
Ok got this fixed. A very small change and now things working great :)
in mxdirectory/index.php line no 37
function add_header($tpl_source, &$xoopsTpl) { return "<?php echo $xoops_module_header; ?>n".$tpl_source; }
Added single quotes to $xoops_module_header, somehow this variable is getting null value resulting into a statement echo ; in final template for rendernation and there its getting crashed. so new code would look like this
function add_header($tpl_source, &$xoopsTpl) { return "<?php echo '$xoops_module_header'; ?>n".$tpl_source; }
Things working fine for me, i hope it does work good for you guys too...