Hello,
I think there is a small bug in cb_login module (only seen with IE8..)
/html/modules/mod_cblogin/mod_cblogin.php
Zeile 862 add a </form> tag.
old code:
if ($horizontal || ( $show_remind_register_icons == 2 ) ) {
echo " \n";
} elseif ( $jVersion == 2 ) {
echo '</fieldset>';
} else {
echo "</td></tr>\n<tr><td>";
}
new code:
if ($horizontal || ( $show_remind_register_icons == 2 ) ) {
echo " \n";
} elseif ( $jVersion == 2 ) {
echo '</fieldset></form>';
} else {
echo "</td></tr>\n<tr><td>";
}
Greetings,
Roland