Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | changed a two-part/closed BR tag to avoid a warning from HTML syntax verifiers. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6009ff325f020e4d8017ae4e584bcf4d |
| User & Date: | stephan 2009-12-07 18:34:04.000 |
Context
|
2009-12-07
| ||
| 20:20 | Fixed the insertion of invalid P tags inside of UL and OL elements when autoparagraph is on. Bug was reported on the fossil mailing list by Stephan Beal. ... (check-in: 6f0df6c741 user: jeremy_c tags: trunk) | |
| 18:34 | changed a two-part/closed BR tag to avoid a warning from HTML syntax verifiers. ... (check-in: 6009ff325f user: stephan tags: trunk) | |
|
2009-12-04
| ||
| 15:23 | Update SQLite to the first release candidate for 3.6.21. ... (check-in: 017d281f45 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
141 142 143 144 145 146 147 |
@ </div>
}
@ <div class="content">
cgi_destination(CGI_BODY);
/* Put the footer at the bottom of the page.
*/
| | | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
@ </div>
}
@ <div class="content">
cgi_destination(CGI_BODY);
/* Put the footer at the bottom of the page.
*/
@ </div><br clear="both"/>
zFooter = db_get("footer", (char*)zDefaultFooter);
if( g.thTrace ) Th_Trace("BEGIN_FOOTER<br />\n", -1);
Th_Render(zFooter);
if( g.thTrace ) Th_Trace("END_FOOTER<br />\n", -1);
/* Render trace log if TH1 tracing is enabled. */
if( g.thTrace ){
|
| ︙ | ︙ |