Diff
Not logged in

Differences From:

File src/wikiformat.c part of check-in [63886daad8] - In wiki, hyperlinks or the form [./filename] (hyperlinks that begin with character ".") work correctly. Need to add more docs on how the [...] wiki markup really works. by drh on 2008-11-18 15:33:25. Also file src/wikiformat.c part of check-in [d14adf1032] - Merge src & doc leaves back. by kejoki on 2008-11-19 16:55:14. [view]

To:

File src/wikiformat.c part of check-in [a8c3a7ea92] - Make explicit links in wiki visible regardless of whether or not the "h" permission is turned on. by drh on 2008-11-22 19:32:44. [view]

@@ -935,15 +935,15 @@
    || strncmp(zTarget, "mailto:", 7)==0
   ){
     blob_appendf(p->pOut, "<a href=\"%s\">", zTarget);
   }else if( zTarget[0]=='/' ){
-    if( g.okHistory ){
+    if( 1 /* g.okHistory */ ){
       blob_appendf(p->pOut, "<a href=\"%s%h\">", g.zBaseURL, zTarget);
     }else{
       zTerm = "";
     }
   }else if( zTarget[0]=='.' ){
-    if( g.okHistory ){
+    if( 1 /* g.okHistory */ ){
       blob_appendf(p->pOut, "<a href=\"%h\">", zTarget);
     }else{
       zTerm = "";
     }