Hi,
Not sure where to post this bug report, so here goes ...
In Joomla SMF Login 1.4.2, the login form for guests is missing an opening <tr><td> for the first cell.
This is the buggy generated html source for my (not yet live) site:
<table cellspacing="0" cellpadding="0" width="100%" border="0">Welcome Guest. Please login or register.<br />
<form action="index.php" name="login" method="post">
This is what it should be, or thereabouts:
<table cellspacing="0" cellpadding="0" width="100%" border="0"><tr><td>Welcome Guest. Please login or register.<br />
<form action="index.php" name="login" method="post">
My fix is to insert the line echo '<tr><td>'; before line 266 of mod_smf_login.php, such that it looks like ...
} else {
echo '<tr><td>';
if ($bln_display_guest_greeting) {
echo $smf_pre_guest_text, ' ', $txt[28], $smf_post_guest_text, '<br />';
}
echo'
<form action="index.php" name="login" method="post">
Thanks.
Ta,
Beng Tan
Forum 







