BlogEngine.NET 1.4.5.7 だと、Indigo テーマにバグがあってタイトル名の表示が変になってしまいます

これはテーマの中で呼び出しているめそっとが間違っているので、
ここを1箇所直せばひとまずタイトルは問題なく表示されます。

直すコードは /themes/indigo/PostView.ascx です

<!-- Post.Title が UrlEncode() されている -->
<h1><a class="postheader taggedlink" href="<%=Post.RelativeLink %>"><%=Server.UrlEncode(Post.Title) %></a></h1>


<!-- Post.Title を HtmlEncode() に変更する -->
<h1><a class="postheader taggedlink" href="<%=Post.RelativeLink %>"><%=Server.HtmlEncode(Post.Title) %></a></h1>

Currently rated 2.8 by 9 people

  • Currently 2.777778/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Comments are closed