Hello,
About translation of external.
The vB 3.6 external.php file is different than the same file from vB 3.8 version.
vBET translate external in this hook:
external_complete
and after that the external output should be printed.
And in version vB 3.8 the code is:
PHP Code:
($hook = vBulletinHook::fetch_hook('external_complete')) ? eval($hook) : false;
{ ... another code ... }
echo $output;
and it works good (echo $output is after our translation)
but in your version you have:
PHP Code:
echo $output;
($hook = vBulletinHook::fetch_hook('external_complete')) ? eval($hook) : false;
so firstly the external content is printed and after that - translated - this is wrong order!
You can see it. Just open external.php file and go to the end of this file.
I made a test and I remove
echo $output after this hook and translation worked, but I can't make any pernament changes in vB code
I will try to find another solution.