From bc59865a69254617c2115f1e2881618698ca4400 Mon Sep 17 00:00:00 2001 From: Dario Solera Date: Thu, 22 Oct 2009 13:30:16 +0000 Subject: [PATCH] Fixed and closed #398: discussion permalinks now use the P-like character instead of a "#". --- AssemblyVersion.cs | 4 ++-- WebApplication/PageDiscussion.ascx.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AssemblyVersion.cs b/AssemblyVersion.cs index ccfb674..fcbd6dd 100644 --- a/AssemblyVersion.cs +++ b/AssemblyVersion.cs @@ -16,5 +16,5 @@ using System.Reflection; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("3.0.1.412")] -[assembly: AssemblyFileVersion("3.0.1.412")] +[assembly: AssemblyVersion("3.0.1.413")] +[assembly: AssemblyFileVersion("3.0.1.413")] diff --git a/WebApplication/PageDiscussion.ascx.cs b/WebApplication/PageDiscussion.ascx.cs index 4abe5c8..6107700 100644 --- a/WebApplication/PageDiscussion.ascx.cs +++ b/WebApplication/PageDiscussion.ascx.cs @@ -105,7 +105,7 @@ namespace ScrewTurn.Wiki { // Print header sb.Append(@"
"); //sb.AppendFormat(@"", message.ID); - sb.AppendFormat(@"# ", Tools.GetMessageIdForAnchor(message.DateTime)); + sb.AppendFormat(@" ", Tools.GetMessageIdForAnchor(message.DateTime)); if(!currentPage.Provider.ReadOnly) { // Print reply/edit/delete buttons only if provider is not read-only