Browse Source

fix 404: classic home page modules link

HOME 2 năm trước cách đây
mục cha
commit
cd1ac19d74
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      FNZCM/FNZCM.ConHost/HostProgram.cs

+ 1 - 1
FNZCM/FNZCM.ConHost/HostProgram.cs

@@ -432,7 +432,7 @@ namespace FNZCM.ConHost
                         foreach (var module in Modules)
                         {
                             sb.Append("<li>");
-                            sb.Append($"<a href='/module/{module.Key.UrlEscape()}/{module.Value.DefaultDocument}'>{module.Value.DisplayText}</a>");
+                            sb.Append($"<a href='/modules/{module.Key.UrlEscape()}/{module.Value.DefaultDocument}'>{module.Value.DisplayText}</a>");
                             sb.Append("</li>");
                         }
                         sb.Append("</ul>");