Skip to content

Commit

Permalink
fixes url escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
voitto committed Jun 26, 2013
1 parent a212962 commit 56307a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/post/_show.html
Expand Up @@ -27,14 +27,14 @@ <h2 class="entry-title e-content">{{title}}</h2>

{{#is_reply}}
<h2>a reply to:</h2>
<a href="{{original_url}}"><h3>{{original_url}}</h3></a>
<a href="{{{original_url}}}"><h3>{{original_url}}</h3></a>
{{/is_reply}}


{{#has_replies}}
<h2>replies:</h2>
{{#replies}}
<a href="{{reply_url}}"><h3>{{reply_url}}</h3></a>
<a href="{{{reply_url}}}"><h3>{{reply_url}}</h3></a>
{{/replies}}
{{/has_replies}}

Expand Down

0 comments on commit 56307a7

Please sign in to comment.