Solved!!!!!
Thanks Lynne!!!!:up:
The problem was in the footer template: There was a incompatibility between javascripts and <table>
I moove all the java script
HTML Code:
<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}
//-->
</script>
<!-- / auto DST correction code -->
</if>
<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();
//-->
</script>
to the end of the footer template, being sure that is no HTML after it and it WORKS!!!!!
More info here:
https://vborg.vbsupport.ru/showthread.php?t=181191
https://vborg.vbsupport.ru/showthread.php?p=1505708
Thanks for all the Help!!!
Regards