Fixed and closed #376: {cloud} now displays local category names.

This commit is contained in:
Dario Solera 2009-10-12 15:21:46 +00:00
parent 45f210bd53
commit 980056c487
2 changed files with 3 additions and 3 deletions

View file

@ -2231,7 +2231,7 @@ namespace ScrewTurn.Wiki {
sb.Append(@""" style=""font-size: ");
sb.Append(ComputeSize((float)categories[i].Pages.Length / (float)tot * 100F).ToString());
sb.Append(@"px;"">");
sb.Append(categories[i].FullName);
sb.Append(NameTools.GetLocalName(categories[i].FullName));
sb.Append("</a>");
}
if(i != categories.Count - 1) sb.Append(" ");