Update of /cvsroot/php-blog/serendipity/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5434/templates/default
Modified Files:
entries.tpl
Log Message:
fix bad escaping
Index: entries.tpl
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/entries.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- entries.tpl 30 Nov 2004 11:27:57 -0000 1.5
+++ entries.tpl 2 Dec 2004 12:30:16 -0000 1.6
@@ -49,7 +49,7 @@
{if $entry.has_comments}
{if $use_popups}
- | <a href="{$serendipityHTTPPath}comment.php?serendipity[entry_id]={$entry.id}&serendipity[type]=comments" onclick="window.open(this.href, \'comments\', \'width=480,height=480,scrollbars=yes\'); return false;">{$entry.label_comments} ({$entry.comments})</a>
+ | <a href="{$serendipityHTTPPath}comment.php?serendipity[entry_id]={$entry.id}&serendipity[type]=comments" onclick="window.open(this.href, 'comments', 'width=480,height=480,scrollbars=yes'); return false;">{$entry.label_comments} ({$entry.comments})</a>
{else}
| <a href="{$entry.link}#comments">{$entry.label_comments} ({$entry.comments})</a>
{/if}
@@ -57,7 +57,7 @@
{if $entry.has_trackbacks}
{if $use_popups}
- | <a href="{$serendipityHTTPPath}comment.php?serendipity[entry_id]={$entry.id}&serendipity[type]=trackbacks" onclick="window.open(this.href, \'comments\', \'width=480,height=480,scrollbars=yes\'); return false;">{$entry.label_trackbacks} ({$entry.trackbacks})</a>
+ | <a href="{$serendipityHTTPPath}comment.php?serendipity[entry_id]={$entry.id}&serendipity[type]=trackbacks" onclick="window.open(this.href, 'comments', 'width=480,height=480,scrollbars=yes'); return false;">{$entry.label_trackbacks} ({$entry.trackbacks})</a>
{else}
| <a href="{$entry.link}#trackbacks">{$entry.label_trackbacks} ({$entry.trackbacks})</a>
{/if}
|