Check-in [fd5cf3e552]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:[CORE] - Remove leading slash as it breaks url creation in some circumstances.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fd5cf3e55287ee4e1734a2c5defdf9e27e7683ae
User & Date: julcar 2022-01-05 07:58:00
Context
2022-01-05
08:55
[MODULES] - Change the parameter name from template to tplname as I detected it was not working with fancy url off. check-in: d1eb1cabea user: julcar tags: trunk
07:58
[CORE] - Remove leading slash as it breaks url creation in some circumstances. check-in: fd5cf3e552 user: julcar tags: trunk
2022-01-04
07:40
[LIBS][JSON] - When generating strings, make sure to convert to unicode any backslash sent. check-in: 4dd66d3356 user: julcar tags: trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Changes to core/system.bas.

173
174
175
176
177
178
179
180

181
182
183
184
185
186
187
173
174
175
176
177
178
179

180
181
182
183
184
185
186
187







-
+







      END IF
      Count += 1
      StartPos = NextPos + 1
    WEND
    IF CBOOL(Settings(SITE_FANCY_URL)) THEN
      CreateURL = "/" + Result + Settings(SITE_FANCY_URL_EXTENSION)
    ELSE
      CreateURL = "/?" + Result
      CreateURL = "?" + Result
    END IF
  END FUNCTION

  FUNCTION GetURLParam (VarName AS STRING = "", ParamIndex AS ULONG = 0) AS STRING
    IF CBOOL(Settings(SITE_FANCY_URL)) THEN
      DIM FoundParam AS STRING = URLParam(ParamIndex)
      IF ParamIndex > 0 AND FoundParam <> "" THEN