소스 검색

Fix buglet in readable theme's post template.

Thanks to Matthias Wimmer for the report and fix.
Brit Butler 10 년 전
부모
커밋
0dae5d249a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      themes/readable/post.tmpl

+ 1 - 1
themes/readable/post.tmpl

@@ -6,7 +6,7 @@
6 6
   <p>
7 7
     {if $post.tags}
8 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 10
           {if not isLast($tag)},{sp}{/if}
11 11
       {/foreach}
12 12
     {/if}