Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv23751
Modified Files:
serendipity_functions.inc.php
Log Message:
Broke my single-entry archive page
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- serendipity_functions.inc.php 12 Jul 2003 18:55:28 -0000 1.104
+++ serendipity_functions.inc.php 18 Jul 2003 17:55:46 -0000 1.105
@@ -108,7 +108,7 @@
?>
<div class="serendipityCommentForm">
<form <?php echo ($serendipity['XHTML11'] ? 'id' : 'name'); ?>="serendipity_comment" action="<?php echo $serendipity['serendipityHTTPPath']; ?>comment.php" method="post" onsubmit="if (this.serendipity_remember.checked) rememberMe(this, '<?php echo $_SERVER['HTTP_HOST']; ?>')">
- <div><input type="hidden" name="serendipity[entry_id]" value="<?php echo $id; ?>" /></div>
+ <input type="hidden" name="serendipity[entry_id]" value="<?php echo $id; ?>" />
<table border="0" width="100%" cellpadding="3">
<tr>
@@ -135,6 +135,7 @@
<td class="serendipity_commentsLabel"><input type="submit" value="<?php echo SUBMIT_COMMENT; ?>" /> <input type="checkbox" name="serendipity[remember]" <?php echo $serendipity['COOKIE']['remember'] ; ?> /> <?php echo REMEMBER_INFO; ?></td>
</table>
</form>
+</div>
<?php
}
|