You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/10/26 19:21:04 UTC

svn commit: r468069 - /incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm

Author: agilliland
Date: Thu Oct 26 10:21:03 2006
New Revision: 468069

URL: http://svn.apache.org/viewvc?view=rev&rev=468069
Log:
fix for showEntryTags macro so it doesn't try and show a tag count, which isn't available in that scope because you are iterating over TagData objects, not TagAggData objects.


Modified:
    incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm

Modified: incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm
URL: http://svn.apache.org/viewvc/incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm?view=diff&rev=468069&r1=468068&r2=468069
==============================================================================
--- incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm (original)
+++ incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm Thu Oct 26 10:21:03 2006
@@ -804,7 +804,7 @@
   
   #set ( $tags = $entry.tags )
   #foreach($tag in $tags)
-	    <a href="$url.tag($tag.name)" title="$tag.count" rel="tag">$tag.name</a>&nbsp;
+	    <a href="$url.tag($tag.name)" rel="tag">$tag.name</a>&nbsp;
   #end
   
 #end