Saludos
Logre solucionar el inconveniente de la siguiente manera:
1. En el archivo ubicado en *modules\mod_wrapper\tmpl\default.php
2. Buscar function iFrameHeight()
ANTES
Código Javascript
:
Ver original<script language="javascript" type="text/javascript">
function iFrameHeight() {
var h = 0;
if (!document.all ) { h = document.getElementById('blockrandom').contentDocument.height;
if (h == 0){ h=545;
} document.getElementById('blockrandom').style.height = h + 20 + 'px';
} else if( document.all ) { h = document.frames('blockrandom').document.body.scrollHeight;
document.all.blockrandom.style.height = h + 20 + 'px';
} }
</script>
DESPUES
Código PHP:
Ver originalfunction iFrameHeight() {
var f = document . getElementById('blockrandom');
f.style.height = '100px';
var d = (f . contentWindow . document || f . contentDocument);
h
= Math
. max(d
. body
. offsetHeight
, d
. body
. scrollHeight
);h += (document . all) ? 60 : 20;
f.style.height = h + 'px';
f . setAttribute("height", h);
}