Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an HTML syntax error in the common page footer. CVSTrac ticket #3004. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e21302f6df6ca5eeb104104d908d008e |
User & Date: | drh 2008-03-18 14:07:59.000 |
Context
2008-04-08
| ||
05:30 | Fix for CVSTrac ticket #3031 - typo in atomic commit document. (check-in: afd9f7a1c4 user: drh tags: trunk) | |
2008-03-18
| ||
14:07 | Fix an HTML syntax error in the common page footer. CVSTrac ticket #3004. (check-in: e21302f6df user: drh tags: trunk) | |
2008-03-17
| ||
15:46 | Add FAQ entry about compiler warnings. (check-in: 58d5fe7ee4 user: drh tags: trunk) | |
Changes
Changes to wrap.tcl.
︙ | ︙ | |||
342 343 344 345 346 347 348 | <a href="${path}news.html">News</a> <a href="http://www.sqlite.org/cvstrac/index">Developers</a> <a href="${path}support.html">Support</a> </div></div></div></div></div> </td></tr></table> } if {$srcfile!=""} { | | | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | <a href="${path}news.html">News</a> <a href="http://www.sqlite.org/cvstrac/index">Developers</a> <a href="${path}support.html">Support</a> </div></div></div></div></div> </td></tr></table> } if {$srcfile!=""} { set hd(footer) "<hr><small><i>\n" set mtime [file mtime $srcfile] set date [clock format $mtime -format {%Y/%m/%d %H:%M:%S UTC} -gmt 1] append hd(footer) "This page last modified $date\n" append hd(footer) "</i></small></div></body></html>" } else { set hd(enable-main) $saved_enable } |
︙ | ︙ |