a long time ago I installed the XS-Mod and everything worked fine. Now, I installed the Gallery2-phpbb-Integration mod and noticed some problems, because in the new template.php (this one from the xs-mod) a part which I should overwrite for the gallery2-integration-mod is missing. I think that in the original template.php (before modding with xs) this part is in.
I hope now, that maybe a developer of xs, knowing what has changed from the original template.php to the xs-modded template.php, can help me to edit the xs-modded template.php to work with the integration mod for gallery2.
The Modding-Instruction says:
->FIND<-
- Code: Select all
if (!$do_not_echo)
{
$code_lines[$i] = 'echo \'' . $code_lines[$i] . '\' . "\\n";';
}
-> REPLACE WITH <-
- Code: Select all
if (!$do_not_echo)
{
if ( defined('UTF8_TRANSLATE') )
{
$code_lines[$i] = 'echo utf8_encode(\'' . $code_lines[$i] . '\' . "\\n");';
}
else
{
$code_lines[$i] = 'echo \'' . $code_lines[$i] . '\' . "\\n";';
}
}
In my template.php there is no "if (!$do_not_echo) ... "
Any Ideas / Help?

