Update of /cvsroot/php-blog/jBlog
In directory sc8-pr-cvs1:/tmp/cvs-serv19229
Modified Files:
jBlog_functions.inc.php
Log Message:
More CSS/Layout fixes.
Index: jBlog_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/jBlog/jBlog_functions.inc.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- jBlog_functions.inc.php 6 Mar 2003 03:05:29 -0000 1.16
+++ jBlog_functions.inc.php 6 Mar 2003 04:32:45 -0000 1.17
@@ -373,11 +373,12 @@
?>
<tr>
<td class="jBlog_comment">
- <a name="comment<?=$comment['id']?>">
+ <a name="comment<?=$comment['id']?>"></a>
<?=nl2br($comment['body'])?><br />
- <i><?=$type?> <?=($link ? "<a href=\"$link\">$name</a>" : $name)?> on
- <font size="-1"><a href="<?=$PHP_SELF?>#comment<?=$comment['id']?>"><?=date("M d, h:i", $comment['timestamp'])?></a></font>
- </i></a>
+ <div class="jBlog_comment_source">
+ <?=$type?> <?=($link ? "<a href=\"$link\">$name</a>" : $name)?> on
+ <a href="<?=$PHP_SELF?>#comment<?=$comment['id']?>"><?=date("M d, h:i", $comment['timestamp'])?></a>
+ </div>
</td>
</tr>
<?php
|