diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-04-21 15:37:38 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-04-21 15:37:38 +0000 |
commit | 89fb6b6b4e398adcb204b4bcc84d18823472fefd (patch) | |
tree | 3c41b8fbe8d1fdf29564570fb7b385fbbd7745bf | |
parent | cccb132c81e82cc01ca7f014d185c1ecce864377 (diff) | |
download | brdo-89fb6b6b4e398adcb204b4bcc84d18823472fefd.tar.gz brdo-89fb6b6b4e398adcb204b4bcc84d18823472fefd.tar.bz2 |
Fixed error in HTML... (</TD</TR> changed to </TD></TR>)
-rw-r--r-- | modules/book.module | 2 | ||||
-rw-r--r-- | modules/book/book.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module index 8fe3aea9f..ece797974 100644 --- a/modules/book.module +++ b/modules/book.module @@ -53,7 +53,7 @@ function book_view($node, $main = 0) { } $output .= " <TR><TD COLSPAN=\"2\">$location</TD><TD ALIGN=\"right\">". node_control($node) ."</TD></TR>\n"; - $output .= " <TR><TD COLSPAN=\"3\"><HR></TD</TR>"; + $output .= " <TR><TD COLSPAN=\"3\"><HR></TD></TR>"; $output .= " <TR><TD COLSPAN=\"3\"><B><BIG>". check_output($node->title) ."</BIG></B>". ($node->body ? "<BR><SMALL><I>Last updated by ". format_username($node->userid) ." on ". format_date($node->timestamp) ."</I></SMALL> " : "") ."</TD></TR>\n"; } diff --git a/modules/book/book.module b/modules/book/book.module index 8fe3aea9f..ece797974 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -53,7 +53,7 @@ function book_view($node, $main = 0) { } $output .= " <TR><TD COLSPAN=\"2\">$location</TD><TD ALIGN=\"right\">". node_control($node) ."</TD></TR>\n"; - $output .= " <TR><TD COLSPAN=\"3\"><HR></TD</TR>"; + $output .= " <TR><TD COLSPAN=\"3\"><HR></TD></TR>"; $output .= " <TR><TD COLSPAN=\"3\"><B><BIG>". check_output($node->title) ."</BIG></B>". ($node->body ? "<BR><SMALL><I>Last updated by ". format_username($node->userid) ." on ". format_date($node->timestamp) ."</I></SMALL> " : "") ."</TD></TR>\n"; } |