814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
|
const char *zDate = db_column_text(&q2, 2);
if( zUser==0 || zUser[0]==0 ) zUser = "unknown";
@ <tr><th>Received From:</th>
@ <td>%h(zUser) @ %h(zIpAddr) on %s(zDate)</td></tr>
}
db_finalize(&q2);
}
if( g.perm.WrWiki ){
@ <tr><th>Edit Wiki:</th>
@ <td>%z(href("%R/wikiedit?name=checkin/%s",zUuid))this checkin</a>
@ %b(&wiki_edit_links)</td>
}
if( g.perm.Hyperlink ){
@ <tr><th>Other Links:</th>
@ <td>
|
|
|
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
|
const char *zDate = db_column_text(&q2, 2);
if( zUser==0 || zUser[0]==0 ) zUser = "unknown";
@ <tr><th>Received From:</th>
@ <td>%h(zUser) @ %h(zIpAddr) on %s(zDate)</td></tr>
}
db_finalize(&q2);
}
if( g.perm.WrWiki && db_get_boolean("wiki-about",1) ){
@ <tr><th>Edit Wiki:</th>
@ <td>%z(href("%R/wikiedit?name=checkin/%s",zUuid))this checkin</a>
@ %b(&wiki_edit_links)</td>
}
if( g.perm.Hyperlink ){
@ <tr><th>Other Links:</th>
@ <td>
|