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 |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
fd5cf3e55287ee4e1734a2c5defdf9e2 |
| User & Date: | julcar 2022-01-05 07:58:00.671 |
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
Changes to core/system.bas.
| ︙ | |||
173 174 175 176 177 178 179 | 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
|
| ︙ |