There is an extra charachter in the
blockaddress.php. This does not cause a functional
error. It causes a ":" to be printed in the top of
the table and makes the table larger than it needs to
be. It also moves text down a few lines. Removal of
the extra charachter (":") cleans the screen up
considerably.
Line 36 contains the following string:
msg_box($blkp_blkd,
$blkp_msg2.":<P><B>".$blkp_note."</B>".$blkp_msg3, "bl
ack");
It should be:
msg_box($blkp_blkd,
$blkp_msg2."<P><B>".$blkp_note."</B>".$blkp_msg3, "bla
ck");
removing the ":" just before the "<P>" displays the
message box as it should be shown.