4
I'm not using the module myself, so I can't test it but.
I just downloaded and looked at the code for xcgal/index.php
It looks like the code is in there at the end of the index.php file:
//$xoopsTpl->assign('xcgal_main', $temp);
$xoopsTpl->assign('gallery', $xoopsModule->getVar('name'));
main_menu();
//$xoopsTpl->assign('xcgal_footer', pagefooter());
do_footer();
include_once "../../footer.php";
// Note: some of the lines have been commented out
You could try changing
$xoopsTpl->assign('gallery', $xoopsModule->getVar('name'));
to
$xoopsTpl->assign('gallery', 'Gallery');
or you could add
//$xoopsTpl->assign('xcgal_main', $temp);
$xoopsTpl->assign('gallery', $xoopsModule->getVar('name'));
main_menu();
//$xoopsTpl->assign('xcgal_footer', pagefooter());
do_footer();
include_once "../../footer.php";
//add this next line
$xoopsTpl->assign('xoops_pagetitle', 'Gallery'); // browser page title
That should work
みんなちがってみんないい。
XOOPS 2.0.13.2