Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv5029
Modified Files:
serendipity_functions.inc.php comment.php
Log Message:
o Removed double </div> in comment.php where it got replaced by the
commentform() output of serendipity_functions.inc.php.
o Fixed some cr/lf
o Added missing </tr> tag.
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- serendipity_functions.inc.php 18 Jul 2003 17:55:46 -0000 1.105
+++ serendipity_functions.inc.php 19 Jul 2003 11:10:36 -0000 1.106
@@ -133,7 +133,8 @@
<tr>
<td> </td>
<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>
+ </tr>
+ </table>
</form>
</div>
<?php
Index: comment.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/comment.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- comment.php 18 Jul 2003 18:26:43 -0000 1.17
+++ comment.php 19 Jul 2003 11:10:36 -0000 1.18
@@ -50,11 +50,11 @@
if ($serendipity['XHTML11']) {
echo '<?xml version="1.0" encoding="iso-8859-1" ?>' . "\n";
?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<?php
}
-?>
+?>
<html<?php echo ($serendipity['XHTML11'] ? ' xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" dir="ltr"' : ''); ?>>
<head>
<title><?php echo COMMENTS; ?></title>
@@ -84,6 +84,7 @@
<?php serendipity_printTrackbacks(serendipity_fetchTrackbacks($id)); ?>
</dd>
</dl>
+</div>
<?php
} else {
?>
@@ -121,7 +122,6 @@
}
}
?>
-</div>
</body>
</html>
<?php
|