Fix links inside symbol syntax, so that they keep the current language.

[WIKI CGI SCRIPT]
* BUG: Fix links inside symbol syntax, so that they keep the current language.
This commit is contained in:
gambas 2019-08-02 02:42:12 +02:00
parent c8d94ef9b1
commit c3b4a13aac

View file

@ -871,7 +871,7 @@ Public Function GetClassLinkFromName(sClass As String) As String
sComp = CComponent.Classes[sClass].Component sComp = CComponent.Classes[sClass].Component
Endif Endif
Return "<a href=\"" & Application.Root &/ LCase("comp" &/ sComp &/ sClass) & "\">" & Html(sClass) & "</a>" Return "<a href=\"" & Html(Application.Root &/ LCase("comp" &/ sComp &/ sClass) & LinkSuffix) & "\">" & Html(sClass) & "</a>"
Catch Catch