Fixed issue with disabled header anchors.

This commit is contained in:
Dario Solera 2011-05-31 10:44:30 +02:00
parent 1b197cbc65
commit 132657c552
2 changed files with 3 additions and 3 deletions

View file

@ -16,5 +16,5 @@ using System.Reflection;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.4.571")] [assembly: AssemblyVersion("3.0.4.572")]
[assembly: AssemblyFileVersion("3.0.4.571")] [assembly: AssemblyFileVersion("3.0.4.572")]

View file

@ -954,7 +954,7 @@ namespace ScrewTurn.Wiki {
buffer.Append(@""" title="""); buffer.Append(@""" title=""");
buffer.Append(SectionLinkTextPlaceHolder); buffer.Append(SectionLinkTextPlaceHolder);
if(Settings.EnableSectionAnchors) buffer.Append(@""">&#0182;</a>"); if(Settings.EnableSectionAnchors) buffer.Append(@""">&#0182;</a>");
else buffer.Append(@"""></a>"); else buffer.Append(@""" style=""visibility: hidden;"">&nbsp;</a>");
} }
/// <summary> /// <summary>