Overview
SHA1 Hash: | 421a1e1fa4f9e5d4fa628163f48f50ef17357b9b |
---|---|
Date: | 2007-10-27 13:52:17 |
User: | drh |
Comment: | Fix the hyperlink to wiki so that it uses a query parameter for the wiki page name. |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified src/wikiformat.c from [aab9e4b700] to [418172709f].
@@ -783,11 +783,11 @@ ){ blob_appendf(p->pOut, zTarget); }else if( zTarget[0]=='/' ){ blob_appendf(p->pOut, "%s%h", g.zBaseURL, zTarget); }else if( wiki_name_is_wellformed(zTarget) ){ - blob_appendf(p->pOut, "%s/wiki/%T", g.zBaseURL, zTarget); + blob_appendf(p->pOut, "%s/wiki?name=%T", g.zBaseURL, zTarget); }else{ blob_appendf(p->pOut, "error"); } }