Browse Source

Fix buglet in readable theme's post template.

Thanks to Matthias Wimmer for the report and fix.
Brit Butler 10 years ago
parent
commit
0dae5d249a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      themes/readable/post.tmpl

+ 1 - 1
themes/readable/post.tmpl

6
   <p>
6
   <p>
7
     {if $post.tags}
7
     {if $post.tags}
8
       Tagged as {foreach $tag in $post.tags}
8
       Tagged as {foreach $tag in $post.tags}
9
-        <a href="{$config.domain}/tag/{$tag.slug}{$config.pageExt}">{$tag.name}</a>{nil}
9
+        <a href="{$config.domain}/tag/{$tag.slug}.{$config.pageExt}">{$tag.name}</a>{nil}
10
           {if not isLast($tag)},{sp}{/if}
10
           {if not isLast($tag)},{sp}{/if}
11
       {/foreach}
11
       {/foreach}
12
     {/if}
12
     {/if}