Thread subject: muscapaul's PHP-Fusion website :: Terms Infusion v1.xx

Posted by skorpion on 25-04-2007 04:13
#74

Greetings!
I have found a small mistake(error) in a file "terms_settings.php"
Right at the end superfluous closings of the table of data.
From for it(this) the bottom part of the table scatters.
Here that was:
Code

</tr>
</table>
</form>\n";
echo "</td></tr></table></center>";
closetable();

echo "</td>\n";
require_once BASEDIR."footer.php";
?>





And here is how should be:
Code

</tr>
</table>
</form>\n";

closetable();

require_once BASEDIR."footer.php";
?>